Re: Wizard and onSubmit of nested form

2009-03-07 Thread rmattler
this message in context: http://www.nabble.com/Wizard-and-onSubmit-of-nested-form-tp22375244p22388940.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Wizard and onSubmit of nested form

2009-03-07 Thread Dave Schoorl
I created the following Jira issue for this: https://issues.apache.org/jira/browse/WICKET-2150 Dave Schoorl wrote: Thanks. But I've dug a little deeper and it turns out that the panel switching is done in the onSubmit() of the Wizard's NextButton. The Form's onSubmit() is executed after

Wizard and onSubmit of nested form

2009-03-06 Thread Dave Schoorl
Hi all, I am building my first Wizard with the wizard from wicket-extensions version 1.3.5. Every step contains a panel with it's own form, so I have a nested form in the wizards form. I was expecting that when I click next, the onSubmit of my current form is called, but it's not. Instead

Re: Wizard and onSubmit of nested form

2009-03-06 Thread rmattler
- To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org -- View this message in context: http://www.nabble.com/Wizard-and-onSubmit-of-nested-form-tp22375244p22375366.html Sent from the Wicket - User

Re: Wizard and onSubmit of nested form

2009-03-06 Thread Dave Schoorl
Hi Robert, thanks for your quick reply. I am not sure if I understand what you mean. How is form validation helping with the trigger of onSubmit() on the correct form? But I gave it a try and the problem remains: the onSubmit of the next step is called instead of the current step. I think that