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 clean model in the form.johanOn 8/11/06, Pierre-Yves Saumont
 [EMAIL PROTECTED] wrote:Hello,I have a form submiting through Ajax. I want the form not to retain the
input values after submitting. I tried to put form.clearInput() in theonSubmit handler, but it does not do the job. However, the following works :form.myTextfield.setModelValue();form.myCheckbox.setModelValue
(false);form.myDropDown.setModelObject(null);Is this a correct way to clear the form ?BTW, the form is included in the ListView Container that is the targetof the Ajax handler and, without the three lines above, the XML received
by the browser includes the form data.Pierre-Yves-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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/

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 écrit :
 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


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user