I have a page which has a tabbed panel and the content of each tab is dynamically loaded from an external source as follow:
main.jsp <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head><s:head theme="ajax" debug="true"/></head> <body> "http://localhost:8080/app/message/list.action</a <s:tabbedPanel id="test2" theme="simple" > <s:div id="1" label="ALL" theme="ajax" href="%{messageList}?id=a" loadingText="Loading..." /> <s:div id="1" label="ALL" theme="ajax" href="%{messageList}?id=b" loadingText="Loading..." /> <s:div id="1" label="ALL" theme="ajax" href="%{messageList}?id=c" loadingText="Loading..." /> </s:tabbedPanel> </body> </html> The external page loaded has a form where a list of checkbox of different value will be shown base on the id parameter. As you can see in the Main.jsp, I wanna a hyperlink at the top of the tabbed panel. When it is clicked, I wanna pass the form input in the external page for processing. How can I get the form input in the external page from the main.jsp? Is it possible to do so?? Thanks in advance. -- View this message in context: http://www.nabble.com/Getting-form-input-from-a-page-dynamically-loaded-into-a-tabbed-panel-tp14249989p14249989.html Sent from the Struts - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]