Re: [Wicket-user] DateTable with alternating row color

2006-09-07 Thread Stefan Lindner
From: Igor Vaynberg [EMAIL PROTECTED] i just tried examples in the trunk and it seems to work just fine using the DefaultDataTable. Dear Igor, you tried it with wicket 2.0 from current trunk? Stefan winmail.dat- Using

Re: [Wicket-user] DateTable with alternating row color

2006-09-07 Thread Igor Vaynberg
yep-IgorOn 9/6/06, Stefan Lindner [EMAIL PROTECTED] wrote: From: Igor Vaynberg [EMAIL PROTECTED]i just tried examples in the trunk and it seems to work just fine using theDefaultDataTable. Dear Igor, you tried it with wicket 2.0 from current

Re: [Wicket-user] DateTable with alternating row color

2006-09-07 Thread Stefan Lindner
Dear Igor, the problem is solved. The wicket-extensions-version that is downloadable from http://maven.sateh.com/wicket/wicket/ ist a little bit outdated. With the current trunk (shipping around compile errors in dropdownlist code) everything works well.

[Wicket-user] DateTable with alternating row color

2006-09-06 Thread Stefan Lindner
I just wonder about the place where in the DataTableExample (in wicket examples) the alternating style for the table rows (tr class=even... and tr class=odd.. has to be set? Or does this the DefaultDataTable class for me. Or does it the SortableDataProvider? Or do I have to it on my own (as in

Re: [Wicket-user] DateTable with alternating row color

2006-09-06 Thread Gwyn Evans
Well, with the DefaultDataTable, it overrides DataTable's newRowItem() method in order to return an new OddEvenItem rather than a new Item. The OddEvenItem overrides on ComponentTag in order to add the odd or even class. Could you, however, have overridden one of these yourself? /Gwyn On

Re: [Wicket-user] DateTable with alternating row color

2006-09-06 Thread Frank Silbermann
using DefaultDataTable and not getting odd-even row colors, check your .CSS file. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefan LindnerSent: Wednesday, September 06, 2006 6:13 AMTo: wicket-user@lists.sourceforge.netSubject: DateTable with alternating row color I just

Re: [Wicket-user] DateTable with alternating row color (Gwyn Evans)

2006-09-06 Thread Stefan Lindner
Well, with the DefaultDataTable, it overrides DataTable's newRowItem() method in order to return an new OddEvenItem rather than a new Item. The OddEvenItem overrides on ComponentTag in order to add the odd or even class. Could you, however, have overridden one of these yourself? No, I don't