


I need to change a text-field on the masterpage:
Formular1.#pageSet[0].Seite1.Schaltfläche1::click - (JavaScript, client)
// what is wrong with this code?
xfa.resolveNode("TestForm.#pageSet.Seite1.FP_Formular").rawValue="test"; //does not work
Formular1.Masterseite.Seite1.FP_Formular.rawValue="Test"; //does not work either
What do I do wrong?
Thanks for any help
Bruno
Views
Replies
Sign in to like this content
Total Likes
Hi Bruno.
I think you will need something like;
xfa.resolveNode("Formular1.#pageSet.Seite1.FP_Formular").rawValue="test";
I am not sure where "TestForm" came from in your code snippet, but is probably your problem.
Regards
Bruce
Views
Replies
Sign in to like this content
Total Likes
My current solution is a hidden field in the body and the same name as in the MasterPage, both set to global
Views
Replies
Sign in to like this content
Total Likes
Hi Bruno.
I think you will need something like;
xfa.resolveNode("Formular1.#pageSet.Seite1.FP_Formular").rawValue="test";
I am not sure where "TestForm" came from in your code snippet, but is probably your problem.
Regards
Bruce
Views
Replies
Sign in to like this content
Total Likes