addColumnStyleName adds a class to the backing <col> element, and they only 
support a few CSS properties (see http://www.quirksmode.org/css/columns.html
 and http://www.w3.org/TR/CSS21/tables.html#columns )
You could add the style name in the Cell, but it'd mean redrawing the whole 
table when changed, so if it's highly dynamic it'll hinder performance. I'd 
rather suggest in this case adding a style name to the Cell but dynamically 
adding/removing a style name at the CellTable level and using a descendant 
selector (e.g. .blue_font_first_column .first_column { color: blue; })

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to