Hi There,
Is it possible to make use of the form variables in Fragments?
i.e. - Lets say I have a fragment and create a variable within the fragment xdp (in Designer: File > Form Properties > Variables) is it possible to access the fragment variable in script??
function ufSetVar()
{
testVar.value ="test1";
xfa.host.messageBox(testVar.value);
}
I am trying in a script within the fragment, and it only gives me an error: e.g, testVar is not defined
I guess I could use a hidden text field in the fragment to store my variable, but it would be nicer to use the Variable method if possible...
Thanks