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 ev
This might not be what your looking for but it works for me:
getCellTable().setVisibleRange(0, 0); listViewAdapter.updateRowData(0, result); getCellTable().setVisibleRange(0, 10);