Re: [Wicket-user] setDefaultFormProcessing()

2005-09-15 Thread Dipu
sorry , it's mentioned in the java doc that the onSubmit method of the parent form won't be called. my mistake i didn't notice that. - Original Message - From: "Phil Kulak" <[EMAIL PROTECTED]> To: Sent: Wednesday, September 14, 2005 3:

Re: [Wicket-user] setDefaultFormProcessing()

2005-09-14 Thread Phil Kulak
Currently if a button is found, it's onSubmit is called instead of the form's. Why would you want to take the button's logic out of the button? On 9/14/05, Dipu <[EMAIL PROTECTED]> wrote: > > I am using the wicket version 1.1-b4, > when setDefaultFormProcessing() is set to false, the form is n

[Wicket-user] setDefaultFormProcessing()

2005-09-14 Thread Dipu
I am using the wicket version 1.1-b4,  when setDefaultFormProcessing() is set to false, the form is not getting submitted.   I have a form with the following code.   Button backButton = new Button("backButton") backButton.setDefaultFormProcessing(false);add(backButton);     public void onS