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
0 answers
GWT- Celltable Selection issue (weird selection)
I have got a little problem with Celltables... I'm kind of newbie in GWT so need your help to figure it out =))
problem is quite simple, when I click on a row (or on a checkbox of particular row), this row becomes selected and gets blue , like on…

Irakli Gotsiridze
- 23
- 3
0
votes
1 answer
Removing Text selection in EditTextCell
In GWT Celltable while editing EditTextCell the textbox value gets selected by default, how to remove this default selection?
you can check this celltable showcase for EditText…

Ayyanar G
- 1,545
- 1
- 11
- 24
0
votes
1 answer
Gwt CellTable Sorting page by page only
GWT CellTable column sorting page by page only, for each page i have to click the column header
for sorting.
How to sort whole data on single header click.
This is my code,
dataProvider = new ListDataProvider
- >();
…

Ayyanar G
- 1,545
- 1
- 11
- 24
0
votes
1 answer
How to remove row selection on Space click in GWT celltable?
In celltable when I use like this,
dgrid.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
Edited fields space click selecting the row, so I used like this
dgrid.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.BOUND_TO_SELECTION);…

Ayyanar G
- 1,545
- 1
- 11
- 24
0
votes
1 answer
webkit-specific css selector not working
I'm styling my GWT CellTable cells by overriding getCellStyleNames in my column definition. Styles are working, on the most part. I'm trying to color the background of a 4-pixel wide column, with mixed display results depending on the browser…

foamroll
- 752
- 7
- 23
0
votes
0 answers
CellTable KeyboardSelectionPolicy bug
I have a CellTable and would like to set the keyboard selection policy to KeyboardSelectionPolicy.BOUND_TO_SELECTION. However, it seems the first click on a TextCell in the first row does not completely select the row as expected. For illustration,…

ocarlsen
- 1,312
- 2
- 16
- 20
0
votes
1 answer
GWT update a celltable when database is updated
Is it possible to update a celltable when a database is updated automatically? or at least call a function to only update the celltable?
Thanks

user2597012
- 581
- 4
- 9
- 28
0
votes
1 answer
GWT- SingleSelectionModel celltable- how to change selected cell's CSS?
I have something like the cell table here:
http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellTable
but without this UI binder (not really sure what thats all about, my project does not use it)
Anyways, i need a way to edit the…

TheJavaBeast
- 163
- 3
- 16
0
votes
1 answer
CellTable keep TextInputCell old value
I use a CellTable with EditTextCell
When the EditTextCell fire the FieldUpdater, I want to do a validation and set the EditTextCell to the old value if validation fail. But I cant find how to update the CellTable or the specified row.
Here a piece…
0
votes
1 answer
What exactly DataProvider does with respect to CellTable in GWT
I am beginner in GWT application development. I have searched about CellTable online. Didn't got any explaination other than some examples.
Now I really want to know what exactly the DataProvider does in CellTable?
Also would like know more about…

Pradip Borde
- 2,516
- 4
- 18
- 20
0
votes
2 answers
How to add a new column with ListDataProvider to GWT Table without to change ohther columns data?
I have a GWT Celltable, wich is updated from database. The new values from database should be added only in new column without to update the other columns.
So, after each refresh you can see the new state in new column and compare it with old…
0
votes
1 answer
GWT FileUpload Cell Type
Hey guys i am making a celltable of contacts and would like to add the functionality to upload a picture with each contact. How can I add a FileUpload button to the cell table?

lufthansa747
- 1,923
- 3
- 26
- 39
0
votes
1 answer
How to make GWT celltable cell not accepting click or focus
When I have a input such as a checkbox in the celltable cell, I noticed the cell actaully is clickable or focusable. If I click in the cell but outside of the checkbox, the cursor blinks there in the cell but ourside the checkbox. This behavior…

Tony
- 1,458
- 2
- 11
- 13
0
votes
1 answer
RightClick CellTable Header
I need to make the column headers of my celltable to do something on right click.
I implemented a header which uses by now a clickabletextcell, but can be anything.
here is how I declare my celltable so far:
Header header = new Header(new…

Fabrizio Guespe
- 583
- 1
- 10
- 25
0
votes
2 answers
GWT best cell widget/table to populate columns?
I am creating a GWT app that will use a table to display some data. I am not sure which cell widget/table to use to populate data vertically in column. Basically I want to populate data going down instead of going across.
Simple example:
Category A …

Tim
- 284
- 1
- 4
- 20