Questions tagged [gwt-celltable]

A GWT cell table (data presentation table) provides high-performance rendering of large data sets in a tabular view.

A GWT cell table (data presentation table) provides high-performance rendering of large data sets in a tabular view. It uses so called cells to display data - each row is backed in one object in a data provider. Cell table provides support for pagination, selection, etc.

MOre about it on official google webtoolkit Dev-Guide

135 questions
2
votes
3 answers

TextInputCell : i have to click two times to edit the cell

When i want to edit a textinputcell, i generally need two clicks : the first click gives focus to the cell and then to the input. I have a celltable with 20 columns, all textinputcell - excel style. And this problem makes it totally unusable. Here's…
Maxime ARNSTAMM
  • 5,274
  • 10
  • 53
  • 76
2
votes
1 answer

GWT celltable: columns unreachable by keyboard navigation

In the showcase example of CellTable: http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable It is possible to click in the (right-most) address column, the row becomes yellow and the cell is framed in gray. By hitting the UP and DOWN…
user711413
  • 761
  • 5
  • 12
2
votes
0 answers

Identifying sub rows using TableBuilder - GWT 2.5

When building a celltable using a TableBuilder, I encounter a problem to set a unique class name to sub rows. (gwt 2.5RC) the code that builds the rows looks something like this: @Override public void buildRowImpl(AdGroupProxy mainAdGroup, int…
YardenST
  • 5,119
  • 2
  • 33
  • 54
2
votes
2 answers

GWT how to add a custom cell to celltable/datagrid

I have rendered a custom cell which combines an image and text. It looks like this: class ImageTextCell extends AbstractCell My question is how to add this cell into celltable/datagrid. I have tired this. Column
Joey
  • 2,732
  • 11
  • 43
  • 63
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 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
2
votes
1 answer

GWT CellTable getVisibleRange() is not what i except

GWT2.4, CellTable with SimplePager, every page show 5 items(rows), suppose i have 8 items totally, at the first page i can see [1-5], when i press next, it will show [4-8] ( getVisibleRange() is [4-8]), i want it to show [6-8], Is there any way i…
Mike
  • 3,515
  • 10
  • 44
  • 67
2
votes
1 answer

How to get the total row count for GWT CellTable pagination in

I'm trying to implement paging in a CellTable but it's currently showing "1-10 of 10" records instead of "1-10 of 1000" records. I'm not sure where I can update the total record count. My AsyncDataProvider looks like this: …
James Hush
  • 479
  • 1
  • 10
  • 26
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
1 answer

GWT Style Not Working in AbstractCell

I'm attempting to create a custom cell renderer for my GWT CellTable. I'm attempting to set a CSS style inside of the cell, but it's not rendering for some reason. Here's my custom cell renderer static class MyStringCell extends…
Vinnie
  • 12,400
  • 15
  • 59
  • 80
1
vote
1 answer

GWT - Remember state of checkboxes after RangeChangeEvent sent to table

I have CellTable with MultipleSelectionModel attached to it. After some modification of data the table has to be refreshed and new data has to be reloaded from server. However I need to update checkboxes state for newly loaded data. So I am able to…
jdevelop
  • 12,176
  • 10
  • 56
  • 112
1
vote
1 answer

GWT: How do I assign an ID to editable table cells in a CellTable?

I'm using GWT 2.4. I'm constructing a CellTable with some editable table cells. My question is, when the cells are rendered, how do I force them to be rendered with a "name" and/or "id" attribute defined within the input tag? Right now, the code…
Dave
  • 15,639
  • 133
  • 442
  • 830
1
vote
1 answer

gwt celltable: Possible to only make some cells in a column editable?

I'm using GWT 2.4. When using a CellTable, I've seen its possible to add a column in which all of the cells are editable ... final TextInputCell nameCell = new TextInputCell(); Column nameColumn = new Column
Dave
  • 15,639
  • 133
  • 442
  • 830
1
vote
2 answers

Look up GWT CellTable header style/s?

How can TH style name/s of a GWT CellTable's heading be looked up programatically? I have looked at the Client Bundle documentation but it isn't immediately obvious to me how it all fits together. Thanks.
Rori Stumpf
  • 1,912
  • 19
  • 26
1 2
3
8 9