Re: [Wicket-user] Why form validators are private?

2006-10-27 Thread Eelco Hillenius
Please add a feature request in JIRA so that we don't forget about it. Eelco On 10/27/06, Alberto Bueno <[EMAIL PROTECTED]> wrote: > It would be a very good idea. ;) > - Using Tomcat but need to do more? Need to support web

Re: [Wicket-user] Why form validators are private?

2006-10-27 Thread Alberto Bueno
It would be a very good idea. ;) > we could make the protected final so that you can add your own method > that calls the validation methods you do want. > > > On 10/27/06, *Alberto Bueno* < [EMAIL PROTECTED] > > wrote: > > My problem is that the only validation th

Re: [Wicket-user] Why form validators are private?

2006-10-27 Thread Johan Compagner
we could make the protected final so that you can add your own method that calls the validation methods you do want.On 10/27/06, Alberto Bueno < [EMAIL PROTECTED]> wrote:My problem is that the only validation that I don't want to do is the requiredValidation. I want to to the rest of the process.>

Re: [Wicket-user] Why form validators are private?

2006-10-27 Thread Alberto Bueno
My problem is that the only validation that I don't want to do is the requiredValidation. I want to to the rest of the process. > button.setDefaultFormProcessing(false) > > public class Button extends FormComponent { > > /** >* Sets the defaultFormProcessing property. When false (de

Re: [Wicket-user] Why form validators are private?

2006-10-27 Thread Martijn Dashorst
button.setDefaultFormProcessing(false) public class Button extends FormComponent { /** * Sets the defaultFormProcessing property. When false (default is true), * all validation and formupdating is bypassed and the onSubmit method of * that button is called dir

[Wicket-user] Why form validators are private?

2006-10-27 Thread Alberto Bueno
I'm trying to overwrite the validateRequired of the Form, but this method is private. My problem is that I have two submit buttons: the first button is to insert the data into the database, and this button need to check the required fields. The another button is a confirm button that need to do