In GWT I am using the following CSS to apply a format:
.watchListHeader {
background-color: #2062B8;
color: white;
font-style: italic;
}
Here is what I get when I apply the format in two different ways.
stocksFlexTable.getColumnFormatter().addStyleName(0, "watchListHeader");
stocksFlexTable.getRowFormatter().addStyleName(0, "watchListHeader");
Here is a link to the JavaDocs. Under ColumnFormatter it briefly mentions limitations... does this mean this is expected behavior? Seems to me formatting by column is nearly useless if I can't even format the text! Is there an easy workaround?