Re: Ajax form components principles

2008-10-27 Thread Dreamage
Because I want to trigger a show/hide for a textfield when the checkbox is checked/unchecked. -- View this message in context: http://www.nabble.com/Ajax-form-components-principles-tp20180246p20198345.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Ajax form components principles

2008-10-27 Thread Dreamage
Anyway the point is that when using ajax components, the associated model is updated but the form may not be submitted yet, so how would you implement a cancel button to undo the ajax model updates ? Do we have to do all this by hand (storing ajax model updates in temporary variables and applying

Re: Ajax form components principles

2008-10-27 Thread Dreamage
Thanks jwcarman, thats a very good track. I'll look into it. jwcarman wrote: You can use wicketopia's ProxyModelManager, if you want: https://wicketopia.svn.sourceforge.net/svnroot/wicketopia/trunk/wicketopia/src/main/java/org/wicketopia/model/proxy/ProxyModelManager.java This way, you

Generic component placeholder

2008-06-18 Thread Dreamage
Hi, If for example I have the following panel: html xmlns:wicket wicket:panel div span wicket:id=genericComponent/ /div /wicket:panel /html And I want to insert a component at the place of span tag, but the component is not instanciated by the panel ... it's provided by a factory. Here is