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
0
votes
1 answer

Google Web Toolkit - FlexTable

In Flextable, every table cell just only can add 1 widget only? If I want to add more widgets, can I add panel inside the cell then add all the widget inside the panel?
0
votes
1 answer

GWT-CellTable/Datagrid- BOUND_TO_SELECTION causing error

I have created a GWT DataGrid (which essentially acts like a celltable) and am getting a very strange error. java.lang.IllegalStateException: A possible infinite loop has been detected in a Cell Widget. This usually happens when your SelectionModel…
TheJavaBeast
  • 163
  • 3
  • 16
0
votes
1 answer

CellTable using asyncdata provider

I am using AsyncDataProvider to generate the CellTable as mentioned in this example. http://www.mytechtip.com/2010/11/gwt-celltable-example-using_8168.html I am using second approach where you call remote service to fetch the records as mentioned…
Ashish
  • 14,295
  • 21
  • 82
  • 127
0
votes
0 answers

Unable to sort the Celltable column

I am trying to sort my CellTable and I am following the advice mentioned in the following example and the SO answer which are here. http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellTable CellTable: dynamically reordering…
Ashish
  • 14,295
  • 21
  • 82
  • 127
0
votes
1 answer

how to disable mouse over highlighting of rows in celltable gwt

I want to disable the mouse highlighting of rows of a celltable. This celltable is not a selectionmodel so I dont want the rows to get highlighted while mouse over event.
0
votes
1 answer

Remove date from DatePickerCell in gwt

I have implemented a CellTable in gwt, which has a column of type DatePickerCell, which opens a datepicker on click of the cell. I would like to implement something like DateBox, which has a textbox, on click of which a date picker will be opened…
KB Prodigy
  • 231
  • 5
  • 13
0
votes
1 answer

Column Width in GWT CellTable Text Column

I am trying to set Constant Column width to all column in Gwt Celltable, How to achieve this,
TMKS
  • 121
  • 1
  • 3
  • 14
0
votes
1 answer

mouseenter event does not working for gwt celltable

I have one celltable and I need to add handler on its row for "mouseenter" event. I have tried something like following, but its not working for "mouseenter" althought it works for "mouseover". cellTable.addCellPreviewHandler(new…
Pradip Borde
  • 2,516
  • 4
  • 18
  • 20
0
votes
0 answers

CellTable KeyboardSelectionPolicy bug

I have a CellTable and would like to set the keyboard selection policy to KeyboardSelectionPolicy.BOUND_TO_SELECTION. However, it seems the first click on a TextCell in the first row does not completely select the row as expected. For illustration,…
ocarlsen
  • 1,312
  • 2
  • 16
  • 20
0
votes
1 answer

GWT Table with headers on the left

I was wondering if it's possible to create a CellTable with the headers on the side instead of on top. Or what would be a good way to show data in this way? Example: ------------------------------------------ - Name - My name …
algiogia
  • 936
  • 2
  • 14
  • 40
0
votes
1 answer

Single Choice Questions

I want to do a Single Choice Questions (or Single Choice Test) in GWT. So I need rows with only one checkbox selected per row. How do I make a single selection? I thought about a SingleSelectionModel, but it can only be applied on a CellTable, not…
0
votes
1 answer

Redraw CellTable from MainPresenter after popup view is hidden

My MainPresenter has a CellTable with a button column. When u hit a button the presenter calls "addToPopupSlot(editPopup, true)". A editPopup appears with several settings u can make there. After pressing the save button on the popup view it sends…
kArvee
  • 84
  • 1
  • 11
0
votes
1 answer

GWT: Pass click event from widget contained in cell to the column

I have a widget that I render in a GWT cell, which extends the AbstractCell, via the render function below. The column is created as below with the getValue and the FieldUpdater (update) function being defined. The intent is to set selected row to…
AshD
  • 1,066
  • 2
  • 13
  • 28
0
votes
0 answers

How to add/remove dynamic column to/from celltable?

I am using gwt celltable. My columns are configurable through other module. used AsyncDataProvider to update row data. Is there any way in celltable to updateColumnData only? so that newly added data get inserted into celltable or to remove column…
StackOverFlow
  • 4,486
  • 12
  • 52
  • 87
0
votes
0 answers

GWT sinkEvents in hosted mode

I extends a gwt celltable to create a custom celltable, i register the sinkevents ie onmouseover/onmouseout. when you hover on the row of the table the row data is populated on the hover wiget(custom hover popup panel). its works as it supose to do…
1 2 3
8
9