Re: [Wicket-user] Best practice to clear a form ?

2006-08-11 Thread Johan Compagner
Form.clearInput clears the Raw data that all formcomponents have.But not the model data. So yes you need to update the model data of your form.Easiest way to me looks like having a shared (compound) model in the form that is shared for all the form componentsand if you want to clear it. set a new

Re: [Wicket-user] Best practice to clear a form ?

2006-08-11 Thread Jean-Baptiste Quenot
Do you mean that the form values should not be processed? In this case you should use a CancelButton: See http://www.wicket-wiki.org.uk/wiki/index.php/Multiple_submit_buttons_in_form -- Jean-Baptiste Quenot aka John Banana Qwerty http://caraldi.com/jbq/

Re: [Wicket-user] Best practice to clear a form ?

2006-08-11 Thread Pierre-Yves Saumont
No, I mean that after submiting the form, a component in the same page is updated through Ajax. The form itself is updated from the XML data received as a response to the Ajax call. So I want to clear the form data so that the form is automatically reset. Pierre-Yves Jean-Baptiste Quenot a