Parameters

Not controlled by goerp, can be used to mirror some data after submitting the form. Basically, goerp will return all assigned parameters data with the response.

Let’s say we want to pass some data to the next page, using regular query parameter:

<a href="/{{ $.Session.ClientCode }}/{{ $.Session.Language.Code }}/example-page?my-custom-param=hello_there"></a>

And on the referenced page we can call this parameter using .Data.Parameters

<h1>Say Hi!</h1>
<p>{{ .Data.Parameters.my-custom-param }}</p>