RE: [Wicket-user] Re: replace ognl.

2005-10-27 Thread Igor Vaynberg
1.1 will have the dataview package in extensions, you can use that to display sets,etc but you lose paging capability since there really is no easy way to define an offset within a set unless you are willing to do something like: Iterator getItems(int first, int count) { Iterator it=getSet

Re: [Wicket-user] Re: replace ognl.

2005-10-27 Thread Eelco Hillenius
I think it would be very practical to both keep such a OGNL property model /and/ see how we can support both that and our improved property model in compound property models. Eelco On 10/27/05, Nathan Hamblen <[EMAIL PROTECTED]> wrote: > I use ognl {} projection to make non-List Collections into

Re: [Wicket-user] Re: replace ognl.

2005-10-27 Thread Timo Stamm
Nathan Hamblen wrote: I use ognl {} projection to make non-List Collections into Lists for a ListView. (And it /is/ way too slow with long lists.) If list view could handle a SortedSet, or just any Collection, it would eliminate that need. I created my own List Component in a few minutes that