Questions tagged [celltable]

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.

203 questions
4
votes
3 answers

in GWT, How to add a row on top of header of celltable?

This is very interesting, how can we add a row on top of header of celltable in GWT? Ok, Say,GWT Header only support sorting, but i want to do other stuffs on each of the column as well (such filter, hide, ....) So i want to add a row on top of…
Tom
  • 825
  • 1
  • 8
  • 28
4
votes
2 answers

Setting GWT celltable data from presenter

I am new for GWT. I would like to know, is it possible to set the cell table content from the GWT Presenter? Is it OK to set the cell table data from the view itself and still following the MVP Pattern?
japkpc
  • 73
  • 7
4
votes
1 answer

Highlight rows using GWT CellTable

I have created a CellTable with 300+ rows divided into pages of 20. I have a command in my menu that allows the user to highlight rows based on values in some column (similar to conditional formatting in Excel). What I need help with is changing the…
ctp_9
  • 338
  • 2
  • 10
3
votes
2 answers

how to get cell value in a cell table using GWT

am using GWT 2.4, Hibernate and MysQL I created a cell table , when i click on a cell i want to display the data/value in that particular cell Thanks in advance
GLN
  • 161
  • 3
  • 14
3
votes
1 answer

GWT RequestFactory + CellTable

Does anyone know for an example of GWT's CellTable using RequestFactory and that table is being edited? I would like to list objects in a table (each row is one object and each column is one property), be able to easily add new objects and edit. I…
hostnik
  • 2,583
  • 2
  • 17
  • 15
3
votes
2 answers

Gwt: CellTable CSS removes all other CSS files

I am having a problem, when I override the CellTable CSS file with mine (a different one), then all other CSS files get disappear and changes the styles etc. on page. What could be the problem? Can I add more styles (other than CellTable's) into…
Deam
  • 1,007
  • 2
  • 17
  • 36
3
votes
1 answer

GWT CellTable with ImageResourceCell

Does anyone have an idea on how to implement a GWT CellTable with an ImageResourceCell from GWT 2.1M3? I have the following but can't seem to figure out the correct way to add an ImageResourceCell CellTable ct = new…
chiappone
  • 2,728
  • 3
  • 27
  • 32
3
votes
1 answer

GWT Celtable: two clicks needed to change checkbox state in FireFox

In my project i have CellTable with CheckBoxCell column. This is regular column to represent (change) values and doesn't use for row selection (for selection i use SingleSelectionModel). In Chrome everything works fine, on first click I get checkbox…
Oleg Gumennyj
  • 190
  • 1
  • 2
  • 10
3
votes
4 answers

GWT get CellTable contents for printing or export

I have a GWT CellTable that gets populated using somewhat of a complicated and tedious process. I want the user to be able to print or export the data from that table. I would rather not re-render the table contents for export since it is a tedious…
Churro
  • 4,166
  • 3
  • 25
  • 26
3
votes
5 answers

GWT CellTable keep focus on selected row

When I select a row in a CellTable which contains several columns, the whole row gets colored in yellow. It does not depend on which area of the row I click (which column of the row). What I try to do is to keep the selected row colored in yellow as…
Adrian
  • 281
  • 5
  • 14
3
votes
1 answer

GWT CellTable with CheckBoxes get all selected Boxes

i have a CellTable in my GWT Projekt with a CheckBox in each row. Somehow i need to iterate over all rows in the cellTable and need to check if the CheckBox of each row is selected or not. I dont know how to do that and i cant find anything that…
user1882812
  • 936
  • 5
  • 18
  • 41
3
votes
1 answer

GWT TextInputCell value change handler

I started using the CellTable widget. I need an editable text cell so I tried TextInputCell but to my dismay, I can't find the "value change handler". How can I get notified when the cell content changes?
jldupont
  • 93,734
  • 56
  • 203
  • 318
3
votes
1 answer

How to capture doubleClickEvent in GWT CellTable

I'm trying to make a GWT CellTable catch events of type DoubleClickEvent, but while the CellTable correctly receives events of type ClickEvent when a row is clicked in the UI, it not see any DoubleClickEvent when the row is double-clicked. So, if I…
avalori
  • 427
  • 2
  • 5
  • 17
3
votes
2 answers

Header of Sortable CellTable Column not Responsive

I am using GWT 2.5 to create a CellTable with a sortable date column. My code is as follows: CellTable table = new CellTable(); table.setRowStyles(new RowStyles() { @Override public String…
Chania
  • 307
  • 3
  • 14
3
votes
2 answers

Why is GWT CellTable rendering incorrectly in my installation of Internet Explorer 9?

I am developing a Java GWT & App Engine application and use a CellTable to display items uploaded by users into the Blobstore. It all works fine, and looks like this: But today I noticed a problem in my IE9. I know it's only my version of IE9 as it…
1
2
3
13 14