Re: Turn off form validation

2009-01-19 Thread Kaspar Fischer
On 19.12.2008, at 13:45, Martijn Dashorst wrote: Adding a new record to a list should not trigger model updates. It should just add the thing and repaint the container with the added item. If you use a (ajax)submit(link|button) you can setDefaultFormProcessing(false) on the button/link and

RE: Turn off form validation

2009-01-19 Thread Hoover, William
http://cwiki.apache.org/WICKET/conditional-validation.html see alternative approach -Original Message- From: Kaspar Fischer [mailto:fisch...@inf.ethz.ch] Sent: Monday, January 19, 2009 5:19 AM To: users@wicket.apache.org Subject: Re: Turn off form validation On 19.12.2008, at 13:45

Re: Turn off form validation

2009-01-19 Thread Kaspar Fischer
On 19.01.2009, at 14:25, Hoover, William wrote: http://cwiki.apache.org/WICKET/conditional-validation.html see alternative approach Thanks -- I was actually hoping for something simpler/more elegant?! - To unsubscribe,

Re: Turn off form validation

2009-01-19 Thread jWeekend
. - 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/Turn-off-form-validation-tp21090395p21549748.html Sent from the Wicket - User mailing list

RE: Turn off form validation

2009-01-05 Thread Hoover, William
: Turn off form validation i also have a similar use case that requires turning off validation for some ajax button links e.g. i have a form, that may have some text fields with different/none validators and i want to do translation on some of the text fields by ajax/dynamically, so i need to use

RE: Turn off form validation

2009-01-05 Thread Hoover, William
Have you tried processInput? -Original Message- From: ywtsang [mailto:ywts...@gmail.com] Sent: Monday, January 05, 2009 10:15 AM To: users@wicket.apache.org Subject: RE: Turn off form validation because this will not update the model object automatically i.e. i cannot get the updated

Re: Turn off form validation

2009-01-03 Thread ywtsang
/Turn-off-form-validation-tp21090395p21265480.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: Turn off form validation

2008-12-21 Thread noon
-- View this message in context: http://www.nabble.com/Turn-off-form-validation-tp21090395p21113545.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Turn off form validation

2008-12-19 Thread Kaspar Fischer
I have a custom component that allows the user to select one or more tags. For this, the component has a text field and an AjaxButton Add to add a tag. All works fine if I use the component in a form without validation errors. If, however, a text field has setRequired(true), the AjaxButton's

Re: Turn off form validation

2008-12-19 Thread Martijn Dashorst
Validation is there to protect your domain objects from invalid data. Now you want to bypass this? Adding a new record to a list should not trigger model updates. It should just add the thing and repaint the container with the added item. If you use a (ajax)submit(link|button) you can