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
I am using this way
int count = this.getView().getTbcell().getColumnCount();
Loop through and remove first column
for(int i=0;i
Thats it we are done :-)