Questions tagged [celltable]

Cell tables and data grids are gwt ui components usually bound to domain objects/ pojos. Very fast and efficient and with powerful API, somewhat complex to extend on first sight.

203 questions
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
2 answers

GWT 2: how can I add Button to the CellTable's header?

My task is to create a table with a control to add the new lines. This typical control should consist of corresponding set of TextEdits and an "add new row" Button. I use CellTable. I can create this "adding widget" separately just combing button…
KutaBeach
  • 1,445
  • 21
  • 43
0
votes
1 answer

GWT Celltable column with label and image

I am looking to add a label and image to a CellTable column, with following requisites: - Label should be followed by an image. - Click on the column (anywhere on label or image), toggles the image. I am thinking of creating a custom widget…
AM01
  • 302
  • 3
  • 18
0
votes
2 answers

Specific element on top oflist CellTable/ Pager

is it possible to have a specific element on top of the list? backgoround: I have an event app, where new events are constantly added. The events are orderd by date. If an event passes, it is still on top of the page. Now that some time passed, the…
Stefan
  • 14,826
  • 17
  • 80
  • 143
0
votes
1 answer

GWT CellTable wordwrap

I want to set fixed column width, but when content (String) is longer than width of column, then width of column stretch to width of string. But I need to have static width of column, not modifiable, and when content is longer, then transfer…
WelcomeTo
  • 19,843
  • 53
  • 170
  • 286
-1
votes
2 answers

How to move to next row in cellTable using SelectionModel?

SelectionModel currently handles mouse click and keyboard on select row in cellTable. How do I do it programmatically to move to next/prev row according to current selected row?
Alex Eng
  • 1
  • 1
-1
votes
1 answer

GWT: How to capture simple MouseOverEvent for CellTable ?

I found a code that handles mouseover event whenever a user hovers over any cell: table.addCellPreviewHandler(new Handler>() { @Override public void…
Tom
  • 825
  • 1
  • 8
  • 28
-1
votes
2 answers

GWT CellTable Set Column to HTML

I want to put a FlexTable into a CellTable, so in my String getValue() I created the FlexTable and returned ft.toString(), where ft is my FlexTable. However, When I do table.addColumn(flex_table_string, "Header"), GWT does not render the HTML but…
Digital Hazard
  • 137
  • 1
  • 3
  • 9
1 2 3
13
14