Questions tagged [gwt-2.2-celltable]

93 questions
0
votes
0 answers

How to Sort CellTable Locally

How can I sot every column of a Celltable in GWT @Override public void addSortableColumn() { for (int column = 0; column < cellTable.getColumnCount(); column++) { cellTable.getColumn(column).setSortable(true); …
Ashish
  • 14,295
  • 21
  • 82
  • 127
0
votes
1 answer

How can I wrap the text inside the GWT CellTable cell?

I need to wrap the text of the column. My column size is small. So if i set column width some of the letters are not visible. Since the length of the text is bigger than the column size. If there is a space in the text then it wraps itself. So I…
Gnik
  • 7,120
  • 20
  • 79
  • 129
0
votes
1 answer

Display a collection in a cell?

Im using a CellTable to display my data. But my data has fields that is a collection of string. I wonder if there's any recommendation for this purpose. What do you do in this case?
ducnh
  • 260
  • 1
  • 3
  • 10
1 2 3 4 5 6
7