I have two tabs and i wanted to set value of a drop-down list from one tab to the another and i could do it with the built in settings. I wanted to set value and jump_to_tab at the same time using MEL Expressions. Please help us with this.
Regards,
Anoop
The dropdown form item doesn't give you any other options beside populating it and picking where to store the user response (document variable or obs term). So it looks like you can't call JUMP_TO_TAB() from there. I haven't tested this, but maybe trying something like this in the worksheet:
{!
if (document.ddValue <> "") then
JUMP_TO_TAB("TABNAME")
else
""
endif
}
You just need to put the name of the document variable you are using in the if statement and then add the name of the tab. You could also modify it to jump to different tabs if the user makes different responses. This will simply take you to one place if a selection is made.
Brad