garbled css name when styling within UiBinder
问题 For my GWT application, I want to show the selected row in a FlexTable, and for that purpose I add a style to the specific row: @UiField FlexTable productTable; int row; [...] /* select row */ productTable.getRowFormatter().addStyleName(row, "row-selected"); In the corresponding ui.xml file, I have the style added as follows: ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" xmlns:g="urn:import:com.google.gwt.user.client.ui" xmlns:u="urn:import:myapplication.client.ui"> <ui:style> tr.row