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
1
vote
1 answer
GWT - CellTable sortable column won't respond to clicks
I have a GWT Celltable column that needs to be sorted alphabetically. I followed the official documentation and other questions posted here, but I have not been able to get it to work.
I want the column to sort both ascending and descending.…

Anish Sana
- 518
- 1
- 12
- 30
1
vote
1 answer
GWT CellTable Styling
I like to customize the design for my CellTable. For that reason, I tried a lot of suggested way's here in Stackoverflow and some tutorials. It does not work for me and I do not know why. Any hints are welcome.
GWT 2.8.1 is used.
Log/Error:
…

MichaD
- 975
- 2
- 7
- 13
1
vote
1 answer
How to delegate event processing from CellList / CellTable to cell's widget in GWT?
Is there a way to process click event in cell's widget?
I implemented custom complex cell with text and image. Wrap it with FocusPanel and declare a click handler. But CellTable and CellList intercept all events.

user3665549
- 43
- 1
- 6
1
vote
1 answer
My CellTable does not sort
I red a lot about sorting a CellTable. I also went trough the ColumnSorting with AsyncDataProvider. But my CellTable does not sort.
Here is my code:
public class EventTable extends CellTable {
public EventTable() {
EventsDataProvider …

aProgger
- 696
- 1
- 8
- 24
1
vote
1 answer
GWT Create column with custom cell type
I'm trying to use the code from https://stackoverflow.com/a/6966235/1339354 in my project. I defined the following class:
public class SeoClickableCell extends AbstractCell {
public SeoClickableCell() {
super("click",…

Shadark
- 499
- 1
- 7
- 18
1
vote
1 answer
CellPreviewEvent GWT
I have used cellTable named as 'table' in UIbinder and wish to check which cell is clicked. I have learnt on google that CellPreviewEvent can be used for this purpose. I used following syntax to catch the event in my Java code. but it fails with…

Nhqazi
- 732
- 3
- 12
- 30
1
vote
1 answer
In GWT project CellTable created with using AsyncDataProvider, isn't showed
My problem is that I have just created a cellTable but it doesn't work because I see this on my broswer
The red border is of the FlowPanel that contains the table that has a black border, on side there is the GWT.log
Now I've tried everything but I…

anto150192
- 539
- 3
- 13
1
vote
1 answer
ListDataProvider.getList().remove doesn't use the KeyProvider
Calling the ListDataProvider.getList().remove(...) doesn't use the KeyProvider passed in constructor. Is this a GWT bug or is it supposed to work like this?
I've attached the relevant unit test below.
Thank you,
TestVO ri1 = new TestVO();
…

nlight
- 43
- 4
1
vote
1 answer
How to create a Right click drop down menu for GWT cell table
I have a cell table in GWT. I need to create a Right click on the rows in the Cell table. I have tried various methods but it isn't working. Can someone please help!

Trisha
- 63
- 7
1
vote
1 answer
GWT CellTable: How to Update A TextBox Dynamically
I have the following CellTable
When the user clicks the Pay Min. CheckBox, it should copy the value from the Due Now column over to the Pay Today text field AND recalculate the total for the Pay Today column.
Here is the code for the CheckboxCell…

user1576840
- 113
- 1
- 2
- 7
1
vote
0 answers
GWT: Why isn't my Cell's FieldUpdater working?
I have a GWT CellTable that I have just moved from a PopupPresenter to a regular nested PresenterWidget. I am using GWTP.
Since moving it, the FieldUpdater on my ButtonCell is not calling the update() method at all. I have tried a test button and…

slugmandrew
- 1,776
- 2
- 25
- 45
1
vote
1 answer
GWT CellTable user controled width
Is there a way, after the construction of the CellTable, to allow the page's user to change the column width?
I am building a celltable where the user can add columns and many of them and i want him/her to have the ability to change the columns…

user3341688
- 15
- 2
1
vote
1 answer
GWT java CELLTABLE MouseHover Buttoncell
So i have here a Cellbutton :
Column column_2 = new Column(new ButtonCell()) {
@Override
public String getValue(dateiles object) {
int s = object.comments.size();
…

user3110458
- 374
- 5
- 17
1
vote
1 answer
How to get the value of a CellTable cell
I am working on a GWT app that uses CellTable to display 2 columns for denomination and quantity. The denomination values are not editable while the quantity values are editable.
What I envisage is, if a user selects for instance, 5 for denomination…

CodeMarshal
- 13
- 3
1
vote
1 answer
Null error when attempting to add custom row to CellTable in gwt
I have a Cell Table that I am using to output some search results. The cell table uses a list data provider to update info. I want to separate different sections so I am attempting to add a custom row in between different sections that has one cell…

ryooan
- 13
- 4