


Hello
I am developing a interactive form and the back end is SAP ERP software (where in the INITIAL screen will be developed) and the data bse is Oracle, fine.
The my_form has 4 pages.
The first 2 pages (1&2) are meant for to enter the family head details.
And the last 2 pages(3&4) are meant for children details.
As soon as user opened the application,User will get the 3 radio buttons as below,
So, i kept the below code in my_form.docReady event,
{code}
if( allFamily == "X"){
// do nothing
}
if( Head == "X"){
xfa.resolveNode("MY_FORM.Page3").presence = "hidden"
xfa.resolveNode("MY_FORM.Page4").presence = "hidden"
}
if( Children == "X"){
xfa.resolveNode("MY_FORM.Page1").presence = "hidden"
xfa.resolveNode("MY_FORM.Page2").presence = "hidden"
}
{code}
Its not working,
1 - Pls. let me know whts is missing, why its not working?
2 - How can get it done of my requirement, any code snippet and event pls.?
3 - Pls. basically is it possibve to hide a page TOTALLY in the interactive forms concept? if so, wht is the correct EVENT to place my logic/code JavaScript? right now am keepng in docReady event
Thank you
Views
Replies
Sign in to like this content
Total Likes
Hi,
try this...
1. Design your option in a page.
2. Hide your page 1,2,3 & 4
3. Onclick of your option fire your logic.
Views
Replies
Total Likes