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
2 answers
GWT column sort handler ,how to get column's value which has been selected
I have a celltable in GWT and want to implement sorting functionality on it , from database(Criteria)
for that i just want to know how to get the value of the column which has been clicked for sorting
here is my code
…

junaidp
- 10,801
- 29
- 89
- 137
0
votes
2 answers
GWT CELLTABLE : How to add column in celltable which is combination of non-editable text + hyperlink
I want to add link in my celltable's column i.e"validationStatus"
some values are "valid" as well as "invalid"
when value is invalid then I want to make invalid as link (How to ?)
& when value is valid then I want to make it as text
How to add link…

StackOverFlow
- 4,486
- 12
- 52
- 87
0
votes
1 answer
GWTcelltable scrollbar
I have a table with cellTable see the code bellow :

Hatim Setti
- 115
- 1
- 9
0
votes
1 answer
gwt cell table dynamic columns - sorting need an example
I'm new to GWT and I need to create a sortable dynamic celltable.
I saw an example of IndexedColumn class. I generated a Dynamic cell table (List of ArrayList of String), but couldn't make it sort.
does anybody have a simple implementation example?…

Moti Eitan
- 16
- 3
0
votes
1 answer
GWT - How to programmatically uncheck a CheckboxCell when another CheckboxCell is checked?
Given two CheckboxCell's checkboxA and checkboxB, how can I programmatically uncheck checkboxB if checkboxA is unchecked? From what I've tried, I'm able to set the value of checkboxB = false when checkboxA = false, but this change is not being…

Anish Sana
- 518
- 1
- 12
- 30
0
votes
1 answer
GWT - Pagination adds and removes pages incorrectly at edge case scenarios
I have a CellTable with Pagination that is fed by a ListDataProvider. I set the page size to 5 and the expectation is that when there are more than multiples of 5 rows in ListDataProvider, the page numbers get incremented, and vice-versa. I have Add…

Anish Sana
- 518
- 1
- 12
- 30
0
votes
1 answer
How to add tooltips to ButtonCells in a GWT CellTable?
I have a CellTable in GWT, where the last column is a ButtonCell. I wanted to add tooltips to the buttons, based on an attribute of the object used. The problem is that each object has different values for that attribute, but GWT displays the same…

AndreiXwe
- 723
- 4
- 19
0
votes
1 answer
uibutton on uicelltableView not clicked on ios 9, but clickable on ios 11
I call a method when i click on uibutton of a cell, all works fine for ios 11.1 but on ios 9, when i click on uibutton, the cell clicked not the button
func tableView(_ tableView: UITableView, cellForRowAt
indexPath: IndexPath) ->…

tamtoum1987
- 1,957
- 3
- 27
- 56
0
votes
0 answers
Don't Want Loading Image while Srting or Paging in GWT 2.4 CellTable
I am using GWT 2.4 and have created a CellTable:
table = new CellTable();
pager = new SimplePager(SimplePager.TextLocation.LEFT);
idColumn = new TextColumn() {
@Override
public String getValue(Home home) {
…

L. Lowe
- 1
- 3
0
votes
2 answers
GWT celltable combine two click in one
I have a celltable with checkbox. I want to combine two clicks; When I select the row, I also change the state of checkbox. I try the following, but it doesn't work:
column.setFieldUpdater(new FieldUpdater- ()…

SlimZ
- 43
- 1
- 7
0
votes
1 answer
GWT Java - CellTable - ButtonCell - how to make it respond to a click
I have the following ButtonCell. How do I make it respond to a click please (e.g., addClickHandler)? I have tried a number of ways I have found yet none work. None of the Window.alert return a response.
ButtonCell selectButton = new…

Glyn
- 1,933
- 5
- 37
- 60
0
votes
1 answer
How to customize the last row of a CellTable in GWT?
Assume each row has the format:
Data |
Now I am trying to add an empty row at the end. And I would like to not showing the at the last row. I added the empty data through data provider. Is there a way to achieve…

injoy
- 3,993
- 10
- 40
- 69
0
votes
1 answer
How to read revised data from a TextInputCell in a CellTable in GWT?
Each row in the CellTable is a TextInputCell. And I use a ListDataProvider to populate the table at the beginning. However, after I did some changes on the data in the TextInputCell. I tried to read the revised data using the data provider. However,…

injoy
- 3,993
- 10
- 40
- 69
0
votes
0 answers
gwt cellTable sort only sorts one way
If I set my function to sort ascending, and I click the arrow to sort, then it works. If I click the arrow again, it does not sort the list descending.
private void configureSorts() {
//Size Comparison
ListHandler columnSortHandler =…

Michael
- 53
- 3
0
votes
1 answer
Reflect updates to values in a Cell Table
I have a paginated table rendering my elements.
Now one of the elements of that type are updated by the server (by some other source). A message is received on the client that that element is updated (I have the object).
How do I reflect this on the…

Michael Wiles
- 20,902
- 18
- 71
- 101