Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Styling GWT FlexTable only with CSS

Tags:

css

gwt

flextable

How do I style a GWT FlexTable using only CSS? The API mentions nothing about which CSS classes are available.

Aren't there any classes and do I have to set them myself?

I would for instance like to do styling on "th".

like image 826
per_jansson Avatar asked Feb 17 '26 13:02

per_jansson


1 Answers

FlexTable (which extends HTMLTable) doesn't appear to apply any particular styles the cells it contains. There are two possible solutions:

  1. Apply a style to the enclosing FlexTable and use descendent selectors (.myFlexTable th {}) to style the cells.
  2. Use a CellFormatter to add your own style names to cells in the FlexTable.
like image 114
Jason Terk Avatar answered Feb 20 '26 20:02

Jason Terk