I have a need to select value based on a select on a full page, and then again have another select, basically three dropdowns populating based on the other
parent select -> child1 select control ->child2 select control. and soon.
AJAX call on a parial page to invoke another parial page does not seem to work!
whats the best way to do this?
Thanks in advance for your help.
parent select -> child1 select control ->child2 select control. and soon.
AJAX call on a parial page to invoke another parial page does not seem to work!
whats the best way to do this?
Thanks in advance for your help.
RE: partial page calling another partial page
On the data bindings screen for the parent click the "Action Configuration" tab.
Find the AJAX call of you will be making and then click "Maintain Additional Data". Add the XPATH to the data you want to pass through to the child process. This will then be available in the partial page controller rules.
I suggest creating a new fragment to hold the data being passed from one partial page to another eg
<commonData>
<dropdown1 />
<dropdown2 />
<dropdown3 />
</commonData>
ad set this up in the Maintain Additional Data for the parent and child1 partial page.