Re: Add style for even row and add row in cellTable.

2011-09-30 Thread Andrei
If you use a global CSS file, you can do this: .cellTable tr : even { color: red; } Similarly for odd rows. Then all you need is to assign cellTable style to your table. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this

Re: Add style for even row and add row in cellTable.

2011-09-30 Thread Sudhakar Abraham
There are three ways to add style to celltable 1. Global css 2. Inline Style sheet using UiBinder 3. Using CellTable.Resources Extend the CellTable.Resources interface and specify the CellTableStyle.css in source attribute. I send the code segment of CellTable.Resources used in CellTable. // In

Add style for even row and add row in cellTable.

2011-09-30 Thread Brito
I created a cellTable having more number of rows and columns. I wana add background color for each row in celltable. Shall I change the property in celltable? Help me. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this grou