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.
Questions tagged [celltable]
203 questions
2
votes
1 answer
GWT celltable: columns unreachable by keyboard navigation
In the showcase example of CellTable:
http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable
It is possible to click in the (right-most) address column, the row becomes yellow and the cell is framed in gray. By hitting the UP and DOWN…

user711413
- 761
- 5
- 12
2
votes
1 answer
How to get the position of the image clicked in a gwt celltable
I am using a gwt cell table to display the search results..I have two columns where I display text related to the search and I have a column with an arrow image and when i click on it I should be able to open a dialog box and place it right beside…

Saritha
- 181
- 17
2
votes
1 answer
GWT - CellTable/DataGrid Using ImageCell
I want to add an ImageCell in a CellTable. my code is the following:
Column myColumn = new Column(new ImageCell()) {
@Override
public String getValue(Message details) {
Image image = new Image…

Joey
- 2,732
- 11
- 43
- 63
2
votes
1 answer
GWT Style CellTable Header
I'm adding a column that has a color, the default styling has margins that are too wide. I've added a styling to fix that. This works, until I specify a header (I don't want any header text, but to keep column sorting from messing up, apparently I…

Joel
- 2,601
- 4
- 33
- 44
2
votes
2 answers
GWT Header checkbox to check / uncheck all checkboxes in my table
I´ve created an CellTable with the Google Web Toolkit.
I just started using it and my knowledge about it is very small...
However I was searching for a tutorial or just a code example of how to create a checkbox in the CellTable header but everythin…

Erasio
- 43
- 2
- 8
2
votes
1 answer
ColumnSorting with AsyncDataProvider - how to find out which column the user wants to sort by?
I am implementing a GWT CellTable with paging and sorting by multiple columns dynamically.
The basics can be found in the CellTable Developer's Guide.
However, the dynamic example does not tell how to find out by which column the user wants to sort…

Renato
- 12,940
- 3
- 54
- 85
2
votes
2 answers
How to create CellTable based on the response from the server
I want to create a CellTable. But Columns of the celltable should be based on the response from the server. I'm getting the server response as List.
No of Columns = Size of the list.
CellTable column header should be the value from the…

Gnik
- 7,120
- 20
- 79
- 129
1
vote
0 answers
GWT. Dynamically adding new columns to CellTable
I need allow to user to add new columns to CellTable. Since CellTable require bean class, i can't imagine how to implement it.

WelcomeTo
- 19,843
- 53
- 170
- 286
1
vote
1 answer
celltable - howto use an image as celltable background (or row background)
I need to use an image as table background (as entire row background will works).
I tried this:
.cellTableOddRow {
background-image: url(image.jpg);
background-repeat: repeat-y;
width: 300px;
}
but it puts the image in each cell.
Is…

david
- 2,135
- 4
- 24
- 34
1
vote
2 answers
GWT RPC match data for CellTable
I have a GWT 2.4 project using a CellTable.
It has columns like this (actually more):
LastName --- FirstName --- Departments
Smith Tom Research, Management
The names I get from a "User" object which is created on the server from my…

Cassio
- 147
- 1
- 8
1
vote
1 answer
show the detail of a row in celltable
the requirement is easy, but I don't know how to do it.
there is a celltable with a column of radio button (or check box but only allow select one row), after user select that row, there is a button and user can click that button to see the detail…

user1169587
- 1,104
- 2
- 17
- 34
1
vote
1 answer
How to hide column headers in GWT CellTable?
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
vote
1 answer
CellTable: Data repeats in all Columns
i'm a newbie here and in GWT.
Well, i have some questions with CellTable... And i'm very upset with the problem.
The problem is: When i make a setRowData or ListDataProvider.setList, all the data in the List i have repeats at all Columns. If i have…

Katsutoshi
- 45
- 1
- 4
1
vote
1 answer
GWT: How do I assign an ID to editable table cells in a CellTable?
I'm using GWT 2.4. I'm constructing a CellTable with some editable table cells. My question is, when the cells are rendered, how do I force them to be rendered with a "name" and/or "id" attribute defined within the input tag? Right now, the code…

Dave
- 15,639
- 133
- 442
- 830
1
vote
2 answers
Look up GWT CellTable header style/s?
How can TH style name/s of a GWT CellTable's heading be looked up programatically?
I have looked at the Client Bundle documentation but it isn't immediately obvious to me how it all fits together. Thanks.

Rori Stumpf
- 1,912
- 19
- 26