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
0
votes
1 answer
GWT CellTable Sort arow Icon on all sortable columns
I'm having a CellTable with sortable Columns and it works like in the showcase (GWT CellTable showcase). But I think this is not very user friendly. Because the sort arrow icon is only on 1 column and I think it should be an all (set to be) sortable…

vicR
- 789
- 4
- 23
- 52
0
votes
1 answer
GWT cellTable with data binding
Here's the situation: I have a cellTable, which is filled with objects coming form my server. These objects have a state, which changes over time and I want to reflect that in my cellTable. Is there a way I can update only one row of my cellTable,…

Mario Stoilov
- 3,411
- 5
- 31
- 51
0
votes
1 answer
Looking for approach to display multiple records on single row using celltable
Generally, for GWT list views of POJOs/DTOs I typically use a ListDataProider and a CellTable and place the CellTable into a Vertical Panel with a SimplePager. All is well.
I have a scenario where the Pojo's DTO is only 3 fields; and as such it…

slaman
- 91
- 1
- 5
0
votes
1 answer
GWT: React to a click on a SafeHTML in a cell of a CellTable?
I am using a CellTable to display results of a query and I need these results to be shown as (html) links. I would like to react to a click on these links. So far, I had implemented it like this:
// ClickHandler on…

Tim
- 3,910
- 8
- 45
- 80
0
votes
1 answer
Google Web Toolkit - How to prevent duplication of the records?
I am new in GWT. I am trying to use the cell table to do this. Here is my questions:
Name Gender
Ali M
Abu M
Siti F
page 1
Name Gender
Siti F
Noor F
Ahmad F
page 2
I use simple pager to do the paging…

user3007865
- 37
- 5
0
votes
1 answer
How to add the css properties to an image in ImageResourceCell of CellTable
I created a CellTable with image column in GWT. Image is added through `ImageResource .
private Column statusColumn;
private final Resources resources = GWT.create(Resources.class);
final String STATUS_COLUMN =…

olgacosta
- 1,076
- 4
- 15
- 36
0
votes
1 answer
GWT-508 compliant- How to set HTML tags
I am in the process of making my GWT page 508 compliant and I need to add some additional information on the sort buttons in my cellTable for the screen reader to pick up. Basically I need to know how to set the Label HTML tag from the cellTable.
I…

TheJavaBeast
- 163
- 3
- 16
0
votes
2 answers
Showing Edit / Delete buttons for each row in a GWT CellTable?
I have a cell table showing some data. For each row, I want to have two columns which contain edit / delete buttons. When each button is clicked, it should be able to notify a listener which button was clicked (and preferably also be able to pass in…

Ali
- 261,656
- 265
- 575
- 769
0
votes
1 answer
GWT paginated cellTable reload to a specific page
I have a paginated cellTable , how can I reload the paginated cellTable and target it to a specific page? For example, I am viewing page 5, I click the reload button and give pageNo = 5 as a argument and after loading the pagination cellTable are…

gui
- 35
- 6
0
votes
1 answer
How to fix the Column Ordering issue when Insert and Remove columns in GWT?
I have a cellTable that has many columns like the followings:
OrderID - OrderDate - OrderTime - Name .....
1 - 2012-01-05 - 11:12:12 - Tom......
Each column will have a checkBox for Hide/Unhide column:
[x] orderID (CheckBox)
[x] orderDate…

Tum
- 3,614
- 5
- 38
- 63
0
votes
1 answer
GWT java Numbercell Formatted
I have here my Numbercells I want to add doubles to it e.g "1.20" but all I see is 1.
How can I format them for the celltable?
Column column = new Column(new NumberCell()) {
@Override
public…

user3110458
- 374
- 5
- 17
0
votes
1 answer
GWT CellTable header as a column
Is here a way to display the GWT CellTable header in the first column instead of the first row? This is because I have too many columns , and too lengthy a data and I believe they can be better displayed in this format:
|Header 01|And we will have…

aa8y
- 3,854
- 4
- 37
- 62
0
votes
1 answer
Java GWT - Celltable and RPC
Ive got a RPC problem, so it is not possible to seri. Static classes trough RPC
ive got this in my : ...Impl.java
public static class dateils2 {
private final String be;
private final String name;
public dateils2(String name,…

user3110458
- 374
- 5
- 17
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
CellTable Issues with custom rows and ListDataProvider GWT
Basically what I am trying to do is a have a CellTable with multiple sections, separated by a custom row that spans all of the columns to delineate the sections. So far I am using a ListDataProvider for the table data, and I am extending…

ryooan
- 13
- 4