I have a form where I enter my email address and a random question. I pass these as [glob_something] to the next application. In the next application I have set the header to this variable like it is done in the sample video. This works. Now I want this value initially inserted in the form to let the user add some info. I have it configured as a popup. I tried several things:
first: add an assignment on the onscriptinit event like:
{email} = [glob_email];
this didn’t work. I wanted to be sure that the value was present but I get only errors:
sc_alert([glob_email]); does NOT work
sc_alert(’[glob_email]’) displays ‘$this->sc_temp_glob_email’ or something like that
Then I tried on application init, it does not work
Finally I added the following on the initial value of the field
initial value type -> ‘defined value’
initial value -> [glob_email]
This does not work. Entering [glob_email] into the header DOES work.
Now how do I get the initial value into my form field?