Re: [proposal] Make columns of repeaters List instead of IColumn[]

2007-05-20 Thread Igor Vaynberg
you need to use some trickery when adding/removing columns if you want this thing to work in a form. see my recent change to datatable or one of its parents where i changed refreshingview used to render columns to repeatingview to make it work right in forms. -igor On 5/20/07, Martijn Dashorst <

Re: [proposal] Make columns of repeaters List instead of IColumn[]

2007-05-20 Thread Matej Knopp
I'd like that. We can keep the oribinal contructor, can't we? I'd also like isVisible on IColumn, but that might be too late to add. -Matej On 5/20/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: I have been working on a small Wicket application where I use the datatable in a highly dynamic way

[proposal] Make columns of repeaters List instead of IColumn[]

2007-05-20 Thread Martijn Dashorst
I have been working on a small Wicket application where I use the datatable in a highly dynamic way: the columns can be added and removed at runtime. This is working out really nicely with one caveat: the columns are defined as arrays instead of lists. In order to make this work I had to duplicat