GWT CellTable - set column width
问题 Is it possible to set the column width of CellTable in GWT? 回答1: EDIT: As of GWT 2.2 table.setWidth and table.setColumnWidth are supported table.setWidth("100%", true); table.setColumnWidth(nameColumn, 35.0, Unit.PCT); table.setColumnWidth(addressColumn, 65.0, Unit.PCT); I was able to extend the CellTable with a method that sets the widths programmatically. It's a bit of a hack since all the real methods that should do this are private to CellTable and it seems like GWT should provide this