Dear all,
I’m trying to move a text value from a control form to a single form field.
i.e.
FORM1
field: id
field: note (text)
field: icon (html image who links CONTROL1)
CONTROL1
field: txt (text)
When I click on ICON I open the CONTROL1 form. I insert a text value and then I confirm it with OK button.
OnValidateSuccess Event I wrote something like this.
[txt_var]={txt};
$redir_app = ‘form_activities.php’; // Application name
$redir_test = ‘{note}’ == ‘[txt_var]’; // Redirection test
$redir_target = ‘_blank’; // Target window (_blank, _self, _parent or modal)
$redir_param = [txt_var];
sc_redir($redir_app, $redir_param , $redir_target);
Here I’m stucked becouse I don’t know how to use the Glo_Var in order to update the “note” field of “form_activities” form.
??? More or less something like --> form_activities.{note}=[txt_var]; The syntax is not correct but just to understand the concept.
Where I have to write it ?? On CONTROL1 or FORM1 ??
Many thanks
Giovannino