1

I really was going to go with a CellList, but the problem is I want a delete item displayed so when it is clicked that item goes away. That seems to have its own problem, so I went with a CellTable, but I don't want the headers to display.

Joel
  • 2,601
  • 4
  • 33
  • 44

1 Answers1

4

You can find you answer there:
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/fcd4ad18e2435aba

Basically, when you add the columns to the table:
use table.addColumn(Column column);
instead of table.addColumn(Column column, String header);

Adel Boutros
  • 10,205
  • 7
  • 55
  • 89