Sorry, yes, I have a "MasterPage" HTML and Java combination that hosts the divs, so something like this:
Java: public class MasterPage extends WebPage ... MyObject myobject = new MyObject(); add( new Panel1( "panel1", myobject ) ); add( new Pane2( "panel2", myobject ) ); ... HTML: ... <div wicket:id="panel1"></div> <div wicket:id="panel2"></div> ... So conceivably I could create a form object on the MasterPage... ----- Original Message ---- From: Martin Makundi <[email protected]> To: [email protected]; Steven Haines <[email protected]> Sent: Tue, April 27, 2010 10:08:06 AM Subject: Re: Forms across multiple panels Panels are on same web-page? ** Martin 2010/4/27 Steven Haines <[email protected]>: > Hi, > > The application I'm building is composed of several panels, each contained in > its own <div>. The panels are logical groupings of data, handle different > Ajax requests, and so forth. > > My challenge is that when a user completes the process by entering data into > all of the panels, I want to submit the form data from all of the panels into > a single form submit. Or written a different way, I do not want to have to > submit each panel individually, I want a single submission. > > What is the best way to do this? > > Thanks > Steve > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
