Referencing DataTable rows within the table column header

2014-09-09 Thread Ephraim Rosenfeld
Hello All, I am creating a table with a DropDownChoice component in the header of one of the columns. When a selection is made in the drop down in the column header, I want to update all of the rows in the table. Would the following snippet be the best approach to reference each row Item

Re: Referencing DataTable rows within the table column header

2014-09-09 Thread Martin Grigorov
Hi, Why don't you update the table itself ? This will update all its children components too. Otherwise I'd use Wicket's Event system to send a notification to all interested parties. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Sep 9, 2014 at 7:01 PM,

RE: Referencing DataTable rows within the table column header

2014-09-09 Thread Ephraim Rosenfeld
[mailto:mgrigo...@apache.org] Sent: Tuesday, September 09, 2014 12:10 PM To: users@wicket.apache.org Subject: Re: Referencing DataTable rows within the table column header Hi, Why don't you update the table itself ? This will update all its children components too. Otherwise I'd use

Re: Referencing DataTable rows within the table column header

2014-09-09 Thread Paul Bors
PM To: users@wicket.apache.org Subject: Re: Referencing DataTable rows within the table column header Hi, Why don't you update the table itself ? This will update all its children components too. Otherwise I'd use Wicket's Event system to send a notification to all interested

Re: Referencing DataTable rows within the table column header

2014-09-09 Thread Paul Bors
: Referencing DataTable rows within the table column header Hi, Why don't you update the table itself ? This will update all its children components too. Otherwise I'd use Wicket's Event system to send a notification to all interested parties. Martin Grigorov Wicket Training