Questions tagged [gwt-2.2-celltable]
93 questions
2
votes
1 answer
GWT How to make a composite Cell composed of 2 kinds of cells or how to make a custom cell with image and text
I want to add a column in a celltable/datagrid which contains image + text.
I just do some research and found out maybe there are 3 ways to do this.
make an ImageResourceCell and a TextCell then combine them into a composite cell. (did not see any…

Joey
- 2,732
- 11
- 43
- 63
2
votes
2 answers
How to add a css class to the first column of a CellTable widget (GWT)?
I use a CellTable widget in GWT.
I want to change the font size of every texts contained in the first column. The method addColumnStyleName does not fit my need because it adds the class to the colgroup tag; only partial css is handled on this tag,…

Jerome Cance
- 8,103
- 12
- 53
- 106
2
votes
1 answer
How to use a canvas as a cell of a celltable widget with GWT?
All is in the question, how can I create a custom cell with a canvas on it by using a CellTable in GWT ?
I search a way to transform the canvas into html to append it to the SafeHtmlBuilder parameter of the render method but with no success. Here is…

Jerome Cance
- 8,103
- 12
- 53
- 106
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
2 answers
GWT Celltable : How to avoid entering particular value in particular cell of Celltable?
How to avoid entering particular value in editTextCell- column- Celltable?
Is there any event in editTextCell?
Validation while entering values in cells of celltable
In case of
String :Dont enter spaces in cell
Integer : Dont use…

StackOverFlow
- 4,486
- 12
- 52
- 87
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
How to open a Popup Panel by clicking a cell in the CellTable?
I have a CellTable being displayed like shown below-
On click of the Delete button I want to open a Popup panel in the center of the screen which should contain a Flow Panel and a Button within it.
Right now for the Delete button I have the…

Prince
- 20,353
- 6
- 39
- 59
1
vote
1 answer
Adding an editable numeric cell to celltable
I am using GWT's CellTable for a non-editable number cell, and it works fine. Is there a standard approach for an editable number cell?
If so, please provide some sample code.

karthik vadapalli
- 363
- 4
- 18
1
vote
1 answer
GWT Celltable : Custom DatePickerCell
I want to use customDatePickerCell in CellTable.
Current GWT2.3 Datepicker cell is as follows
I am using GWT 2.3. DatePicker cell showing Navigation only for month not for year
also there is no seprate navigation for month and Year.
Is there any…

StackOverFlow
- 4,486
- 12
- 52
- 87
1
vote
1 answer
How to set column's cell value depending on changes in other column?
I have 3 column + 10 rows in celltable.
value1Column, value2Column, RecordState
1 | 2 | *
2 | 4 | -
:
9 | 5 | -
10| 5 | *
Whenever user changes values either value1 or value2 then immediately cell related to that record set to * in RecordState…

StackOverFlow
- 4,486
- 12
- 52
- 87
1
vote
2 answers
GWT Celltable How to make Non-Editable cell in Editable column
I added EditTextCell(stringTestEditTextCell) to Column(testColumn).
EditTextCell editTextCell = new EditTextCell();
Column stringColumn = new Column(
editTextCell) {
@Override
public String…

StackOverFlow
- 4,486
- 12
- 52
- 87
1
vote
1 answer
GWT - Clickhandler on a TextColumn in cellTable
Is there a way to add a clickHandler to a Column in a cellTable in GWT ??
I do not see any option from the documentation for TextColumn.
My requirement goes this way - I have to display 5 columns of data in a cell table and one of the columns must…

ravi
- 1,707
- 4
- 29
- 44
1
vote
2 answers
create link in table cell and open float popup by click from it
I have a CellTable and need a column with hyper links and onclick handlers inside cells.
1st question, what am doing wrong if I have:
Column linkColumn = new Column(
new AnchorCell()) {
@Override
…

yetanothercoder
- 1,689
- 4
- 21
- 43
1
vote
1 answer
Update the image in gwt CellList
I am storing image in Google App Engine using Blob. When i add new data in CellList using ListDataProvider's add() method its getting render perfect.
Below is the extended version of AbstractCell:
@Override
public void…

vbjain
- 547
- 2
- 7
- 23
1
vote
1 answer
CellTable paging with SimplePager
Referring to this bug: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/45e77082b796281d/d5101729e83a74ff?lnk=gst&q=pager%20last%20page#d5101729e83a74ff
Well, I want a behavior like that:
tablePager = new SimplePager() {
…

Fabio B.
- 9,138
- 25
- 105
- 177