I'm using a CellTable from GWT 2.1.0.M3. There are removeColumn functions, but no removeAllColumns or anything. Since "columns" is a private member of CellTable, not even my extension of CellTable can easily access it.
For now, I'm just storing the number of columns I add so I can remember to remove them all. Anyone know a better way?
ui:field='someNameHere'property to the CellTable tag in UiBinder and add a@UiField CellTable someNameHere;declaration in your class.someNameHerewill then reference to theCellTablecreated by UiBinder magic. – Igor Klimer Sep 24 '10 at 7:58