Hi
I have a JSP page with 5 dropdowns. Below the dropdowns i have a tabset. Below the tabset i have a HTMLPane in which i load a JSP page when user clicks on a tab from the tabset.
In the child JSP page i have four dropdowns and a GO button.
The use case is:
User selects values in all the 5 dropdowns in parent JSP and clicks on a tab. Then i will load the child JSP page with four dropdowns whose values are fetched from database depending on the values selected in the dropdowns of parent JSP.
Now user selects values from the dropdowns in child JSP and clicks on GO button which is in child JSP. At this time i need, the selected dropdown values of parent JSP as well as the child JSP to display the rest of the content of child JSP.
I tried accessing the form elements of parent JSP in the similar way, how we normally do with in the single page. But it is not working.
Is it possible to access the form elements of parent JSP in child JSP? if Yes how to access?
I have a JSP page with 5 dropdowns. Below the dropdowns i have a tabset. Below the tabset i have a HTMLPane in which i load a JSP page when user clicks on a tab from the tabset.
In the child JSP page i have four dropdowns and a GO button.
The use case is:
User selects values in all the 5 dropdowns in parent JSP and clicks on a tab. Then i will load the child JSP page with four dropdowns whose values are fetched from database depending on the values selected in the dropdowns of parent JSP.
Now user selects values from the dropdowns in child JSP and clicks on GO button which is in child JSP. At this time i need, the selected dropdown values of parent JSP as well as the child JSP to display the rest of the content of child JSP.
I tried accessing the form elements of parent JSP in the similar way, how we normally do with in the single page. But it is not working.
Is it possible to access the form elements of parent JSP in child JSP? if Yes how to access?
Comment