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
1
vote
1 answer

GWT CellTable Styling

I like to customize the design for my CellTable. For that reason, I tried a lot of suggested way's here in Stackoverflow and some tutorials. It does not work for me and I do not know why. Any hints are welcome. GWT 2.8.1 is used. Log/Error: …
MichaD
  • 975
  • 2
  • 7
  • 13
1
vote
1 answer

How to use CellTable.Style with GWT 2.7.0 without UiBinder?

I joined a GWT application project a few weeks ago. The codebase was started back in 2009. I am trying to replace a FlexTable with a CellTable so that I can take advantage of the sortable columns. The current version of GWT in the project is…
k-den
  • 853
  • 13
  • 28
1
vote
1 answer

GWT how to inherit EditTextCell and override some methods, f.e.: edit(Context context, Element parent, String value)

This is my implementation of EditTextCell: public class MyEditTextCell extends EditTextCell { @Override protected void edit(Context context, Element parent, String value) { if (value.equals("")) { super.edit(context,…
masterdany88
  • 5,041
  • 11
  • 58
  • 132
1
vote
1 answer

GWT Celltable-Sorting on Multiple Column

How to perform sorting on multiple column Using GWT Celltable. I didnt find any example code for this? See the below image I need to Perform server side sorting on multiple column .How to Achieve this using GWT Celltable and how to add this arrow…
moh
  • 1,426
  • 2
  • 16
  • 43
1
vote
1 answer

Get all objects from a GWT CellTable

Simple question: I have a CellTable filled with Keyword objects. Now, I would like to retrieve all the Keywords in that CellTable. Is this possible? If not, why? Surely there must be a way... I can not understand how this is so hard (well maybe it…
Jack
  • 87
  • 2
  • 13
1
vote
1 answer

ListDataProvider.getList().remove doesn't use the KeyProvider

Calling the ListDataProvider.getList().remove(...) doesn't use the KeyProvider passed in constructor. Is this a GWT bug or is it supposed to work like this? I've attached the relevant unit test below. Thank you, TestVO ri1 = new TestVO(); …
nlight
  • 43
  • 4
1
vote
1 answer

GWT CellTable: How to Update A TextBox Dynamically

I have the following CellTable When the user clicks the Pay Min. CheckBox, it should copy the value from the Due Now column over to the Pay Today text field AND recalculate the total for the Pay Today column. Here is the code for the CheckboxCell…
user1576840
  • 113
  • 1
  • 2
  • 7
1
vote
2 answers

MGWT TapEvent from GWT AbstractCell?

I have a simple Cell class: public class MyCell implements AbstractCell { ... @Override public void render(com.google.gwt.cell.client.Cell.Context context, MyDto value, SafeHtmlBuilder sb) { } } How can I listen to an…
Michael
  • 32,527
  • 49
  • 210
  • 370
1
vote
1 answer

Multiple ColumnSorting with AsyncDataProvider

I have sortable columns A and B . When user click on column A to sort , my result datas should sort via column A type and column B will show relative datas.When user was clicked on column B to sort , my result datas should sort via column B type and…
Cataclysm
  • 7,592
  • 21
  • 74
  • 123
1
vote
1 answer

GWT- CellTable--Trouble with setting row highlighting

So I am a little confused with how to set the css of an individual row in my Datagrid (which as i understand it can use everything the cellTable can use). First I have a double click and single click handler which do get correctly called in…
TheJavaBeast
  • 163
  • 3
  • 16
1
vote
2 answers

How to Style ButtonCell in CellTable Gwt?

How to Style ButtonCell in CellTable Gwt? I searched on internet & found 2 solutions: -Solution 1: use urColumn.setCelLStyleNames("yourStyleName"); (Adding style to a ButtonCell) ButtonCell nextStepButton=new ButtonCell(); Column
Tum
  • 3,614
  • 5
  • 38
  • 63
1
vote
2 answers

gwt cellTable caching on client side

I intend to create a cell table that show info about contacts from the DB. the table i'm about to display has alot of rows. Currently I managed to display the data with ease. my only problem is, when i change a page in my pager. gwt sends a request…
Urbanleg
  • 6,252
  • 16
  • 76
  • 139
1
vote
0 answers

GWT CellTable within TabLayoutPanel: no line wrap of data

I want to display several CellTables within a TabLayoutPanel. Each tab has a single wrapped CellTable as it's widget. My problem is: if I have a table which has many columns, in my case 12, the content flows to the right of the panel, means that…
diskostu
  • 143
  • 1
  • 11
1
vote
0 answers

GWT Multi columns sort with AsyncDataProvider

i have a table contains 3 columns, when the user clicks in one of them the table should be sorted, i'm using AsyncDataProvider, the sort for the first column works fine, so i should do the same to the others columns. this is the code :…
1
vote
1 answer

How can i replicate GMail current hovered row marker with GWT?

I just want to know how would you do, with a GWT CellTable, to replicate the GMail hovered row marker: I created this classes: public class MarkerCell extends ImageResourceCell { @Override public void…
Fuzzo
  • 320
  • 2
  • 12
1 2 3
8 9