Re: display a set of data table

2013-01-29 Thread Martin Grigorov
Hi,

Use another repeater, like RepeatingView or ListView, that has DataTable`s
as children.


On Tue, Jan 29, 2013 at 4:57 PM, lc991 lorenzoc...@live.it wrote:

 How can I display a set of DataTable. I don't known the tables number.


 es:

 T1|S1  T2|S1  T3|S1
 1   23   23  2
 1   23   23  2
 1   23   23  2
 1   23   23  2
 1   23   23  2



 bye





 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/display-a-set-of-data-table-tp4655886.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com http://jweekend.com/


Re: display a set of data table

2013-01-29 Thread lc991

I create and inizialize a ListdefaultDataTable tables;

then i create a ListView l = new ListView(list,table){

the problem is in the populateItem method of ListView. what should I write
in this method.


}

excuse me for the bad english.



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/display-a-set-of-data-table-tp4655886p4655889.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: display a set of data table

2013-01-29 Thread Martin Grigorov
You should not make a list of DataTable objects but a list of data for the
datatable.


On Tue, Jan 29, 2013 at 5:06 PM, lc991 lorenzoc...@live.it wrote:


 I create and inizialize a ListdefaultDataTable tables;

 then i create a ListView l = new ListView(list,table){

 the problem is in the populateItem method of ListView. what should I write
 in this method.


 }

 excuse me for the bad english.



 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/display-a-set-of-data-table-tp4655886p4655889.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com http://jweekend.com/