Re: AbstractCell and CSS

2011-02-16 Thread John LaBanca
Browsers apply CSS to tables in a funny way. TD elements are basically isolated from the rest of the document, so if you apply a style to the body element (or even table element), it doesn't carry through to the td elements in the table. The workaround is to provide a style for the TD elements, b

AbstractCell and CSS

2011-02-15 Thread Budric
Hi, My custom cell which extends AbstractCell doesn't get the same style as the rest of the table. I add a style to the table using: table.addStyleName("myFontStyle"); which just changes the font size. The table renders fine, but the cell doesn't. The cell does not have addStyleName() or anythin