Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-28 Thread Igor Vaynberg
well - first of all there is a separation of concernstoggle is the toggle collapsable border that wraps somethingwhat it wraps just happens to be some repeater but could be anything else reallyso its not necessarily healthy to merge the two somehow. now if you do want to merge them you can use a pa

Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-28 Thread ChuckDeal
igor.vaynberg wrote: > > the best way, imho, to do the collapsable panels is to use borders in > combination with setborderbodyvisible(). that way you can wrap any > component > or components into this collapsable border and not be limited to only > wrapping a panel. the border will contain a he

Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-17 Thread Igor Vaynberg
ilto:[EMAIL PROTECTED]] On Behalf Of Igor VaynbergSent: Thursday, August 17, 2006 4:29 PMTo: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Creating Panel to display a list of Panels a better way for creating layout with arbitrary number of panels is to use RepeatingView from exten

Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-17 Thread Frank Silbermann
it was? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Igor VaynbergSent: Thursday, August 17, 2006 4:29 PMTo: wicket-user@lists.sourceforge.netSubject: Re: [Wicket-user] Creating Panel to display a list of Panels a better way for creating layout with arbitrary number of pa

Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-17 Thread Igor Vaynberg
ds. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Charles A DealSent: Thursday, August 17, 2006 2:44 PMTo: wicket-user@lists.sourceforge.netSubject: [Wicket-user] Creating Panel to display a list of Panels I am in the process of attempting to rebuild our non-framework, completely homegrown we

Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-17 Thread Frank Silbermann
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Charles A DealSent: Thursday, August 17, 2006 2:44 PMTo: wicket-user@lists.sourceforge.netSubject: [Wicket-user] Creating Panel to display a list of Panels I am in the process of attempting to rebuild our non-framework, completely homegrown web applicati

Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-17 Thread Igor Vaynberg
i got started on building the component a while back - but dropped the idea because ajax header contributions didnt work yet - o you couldnt wrap anything that had ajax in it. now that they do work i will give it another go. -IgorOn 8/17/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: Do you thin

Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-17 Thread Juergen Donnerstag
Do you think it is worth a quick wicket-example? Juergen On 8/17/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > the best way, imho, to do the collapsable panels is to use borders in > combination with setborderbodyvisible(). that way you can wrap any component > or components into this collapsabl

Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-17 Thread Igor Vaynberg
the best way, imho, to do the collapsable panels is to use borders in combination with setborderbodyvisible(). that way you can wrap any component or components into this collapsable border and not be limited to only wrapping a panel. the border will contain a header panel that will toggle the visi

Re: [Wicket-user] Creating Panel to display a list of Panels

2006-08-17 Thread Nick Heudecker
This might help:http://www.wicket-wiki.org.uk/wiki/index.php/Forms_with_dynamic_elementsAs far as expandable panels, that's easily accomplished with Wicket's AJAX support.  Email me if you need more help with it.  - Using Tom

[Wicket-user] Creating Panel to display a list of Panels

2006-08-17 Thread Charles A Deal
I am in the process of attempting to rebuild our non-framework, completely homegrown web application as a Wicket application.  So, I am very new to the Wicket way and find myself struggling with different things such as proper page construction techniques for relatively complex data-enabled pages.