[Wicket-user] How to do struts-nested like form element nesting in Wicket

2005-11-02 Thread Laurent PETIT
Hello, I wonder if it is easily feasible to have functionality like struts-nested, the struts extension made by the keyboardmonkey team ( http://www.keyboardmonkey.com/pilotlight/next/Tutorial_partTwo.jsp?content=yesplease ) This allows to create forms with nested elements : a monkey having

Re: [Wicket-user] How to do struts-nested like form element nesting in Wicket

2005-11-02 Thread Eelco Hillenius
That's easy to do in Wicket. You can nest anyway you want in your forms, including using listviews (though don't forget to set the optimizeItemRemoval property to true). Eelco On 11/2/05, Laurent PETIT [EMAIL PROTECTED] wrote: Hello, I wonder if it is easily feasible to have functionality

Re: [Wicket-user] How to do struts-nested like form element nesting in Wicket

2005-11-02 Thread Laurent PETIT
On 11/2/05, Eelco Hillenius [EMAIL PROTECTED] wrote: That's easy to do in Wicket. You can nest anyway you want in your forms, including using listviews (though don't forget to set the optimizeItemRemoval property to true). I'll try to redo the struts monkey example in wicket, in order to

Re: [Wicket-user] How to do struts-nested like form element nesting in Wicket

2005-11-02 Thread Eelco Hillenius
I never liked that name either. Other people did and we settled for it. Just the way the world works sometimes :) Eelco On 11/2/05, Laurent PETIT [EMAIL PROTECTED] wrote: On 11/2/05, Eelco Hillenius [EMAIL PROTECTED] wrote: That's easy to do in Wicket. You can nest anyway you want in your

Re: [Wicket-user] How to do struts-nested like form element nesting in Wicket

2005-11-02 Thread Juergen Donnerstag
Did you take a look at wicket-examples already? Compared to what is explained on the page you pointed to, it is very easy in Wicket and IMO much more flexibel. Juergen On 11/2/05, Laurent PETIT [EMAIL PROTECTED] wrote: On 11/2/05, Eelco Hillenius [EMAIL PROTECTED] wrote: That's easy to do in

Re: [Wicket-user] How to do struts-nested like form element nesting in Wicket

2005-11-02 Thread Juergen Donnerstag
/** * If true, re-rendering the list view is more efficient if the window * doesn't get changed at all or if it gets scrolled (compared to paging). * But if you modify the listView model object, than you must manually call * listView.removeAll() in

Re: [Wicket-user] How to do struts-nested like form element nesting in Wicket

2005-11-02 Thread Laurent PETIT
Yes I did, but maybe not too deeply I assume. I'll try and do what I'm thinking of using Wicket, and then come back to the list with questions, if any. It seems to me that I haven't seen something as dynamic as what can be done with nested (and the page I pointed to was not fair about the

Re: [Wicket-user] How to do struts-nested like form element nesting in Wicket

2005-11-02 Thread Eelco Hillenius
The fact that Wicket is an unmanaged framework means we put you, the programmer, in power. If you look at nesting and the way IModel works you are not limited in your options. For full power, combine Forms with ListViews and Panels. With panels, you can postpone any markup/ subcomponent decission

Re: [Wicket-user] How to do struts-nested like form element nesting in Wicket

2005-11-02 Thread Laurent PETIT
Yes, I'm currently trying to translate the full powered version of monkey bean : http://www.keyboardmonkey.com/StrutMonkey/monkey-action.do ( and also this slightly different version, with hide/show buttons : http://www.keyboardmonkey.com/StrutMonkey/monkey-action-v2.do ) in Wicket. Very