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
19
votes
5 answers

How can I put a widget in a CellTable Cell?

I am using CellTable to show my records but now the thing is I want show a select box when user clicks on a cell. One more thing is that select box is my own widget, not a predefined. Can you please suggest to me any method of doing this?
vara kumar
  • 193
  • 1
  • 1
  • 4
11
votes
0 answers

Using GWT Editor Framework with CellList

I want to use the GWT Editor framework with a CellList. My data model looks like this: public class CarDto { private String name; private List features; // getter and setter } Using GWTP here is part of my presenter: public class…
Michael
  • 32,527
  • 49
  • 210
  • 370
9
votes
1 answer

Defining GWT CellTables with UiBinder

If I define my CellTable in MyView.ui.xml UiBinder file like this:
Mike
  • 1,296
  • 2
  • 15
  • 40
8
votes
4 answers

Set default sort order for initial header click on gwt cell table

I have a GWT CellTable with sortable columns very similar to the developer's guide example (http://code.google.com/webtoolkit/doc/latest/DevGuideUiCellTable.html#columnSorting). However, I would like to have certain columns sort descending instead…
ahaurw01
  • 1,192
  • 9
  • 15
8
votes
8 answers

How to increase cell height of GWT celltable : Issue with IE?

How to increase cell height of GWT celltable ? In mozilla firefox cell height proper(as per content) but In case of Internet explorer some part of content not displaying properly see image My Celltable.css is as follows: @def selectionBorderWidth…
StackOverFlow
  • 4,486
  • 12
  • 52
  • 87
5
votes
1 answer

Why are there no decent examples of CompositeCell in use within a CellTable?

I have scoured GoogleCode, GWT ShowCase, GWT Developer Notes, and Google Groups for some inkling as to how to get/set values of a CompositeCell. There is no one definitive example that explains how to use it within a CellTable. Let's stare at some…
Chris Phillipson
  • 795
  • 1
  • 15
  • 34
5
votes
1 answer

GWT draggable CellTable cells

I have a GWT CellTable - it's a pretty simple table with just a single string column. What I'd like to do is drag rows of this table to a drop target (actually another table). I've been trying to figure out how to attach a draggable event as…
Vinnie
  • 12,400
  • 15
  • 59
  • 80
5
votes
2 answers

GWT CellTable, disable ButtonCell when clicked

I'm pretty new to GWT, but I've been making pretty fast progress until now. I have a cell table, most of which is read only data returned from an RPC. I have two columns in the cell table that the user can interact with. One is a TextInputCell, one…
user1128157
  • 71
  • 2
  • 3
5
votes
2 answers

CellTable click swallowed

I've an combo box which is composed of a text field and a popup with a CellTable showing the suggestion items. The text field has a change handler that updates the CellTable's selection. When typing a character and clicking an already selected…
Dan L.
  • 1,717
  • 1
  • 21
  • 41
4
votes
4 answers

GWT SimplePager LastButton issue

I am facing problem with lastButton of SimplePager. I have 3 pages in celltable, Page size=11 (1 empty record + 10 records(with value)), Total record=26. I used CustomerPager by extending SimplePager. In 1st attempt 1+10 records display in celltable…
StackOverFlow
  • 4,486
  • 12
  • 52
  • 87
4
votes
1 answer

GWT - Datagrid : Keyboard single selection, when multi selection is enabled

When I enable keyboard selection policy and multi selection on DataGrid I encountered this problem. Case 1 : Multi selection through mouse and keyboard When I want to select more than one row through mouse, I hold Ctrl key or Shift key and this…
Abhijith Nagaraja
  • 3,370
  • 6
  • 27
  • 55
4
votes
2 answers

How to add clickhandler to the subrow of the celltablebuilder

I am able to build custom rows with celltablebuilder. When clicking on a particular anchor cell, I am able to build additional subrows for that row. This subrow has buttons, when clicking on the button I have do some action. I am able to add buttons…
Saritha
  • 181
  • 17
4
votes
2 answers

How to avoid CellList/Table from automatically scrolling to selected item when visible range is changed

I was implementing a custom CellTable that has a infinite scroll feature using the CellList showcase example ( http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellList ). However, I found a feature in CellList/Table that is undesirable in…
pg30123
  • 65
  • 4
3
votes
1 answer

Add paging animation to CellTable in GWT

I'm trying to come up with way to animate a page change on a CellTable in GWT which would work the same way as changing tabs on (http://gwt.google.com/samples/Showcase/Showcase.html#!CwTabLayoutPanel). In other words the new table page would slide…
Matyas
  • 311
  • 1
  • 4
  • 14
3
votes
1 answer

GWT CellTable/DataGrid - how to detect column selection?

When a row is selected, I would like to know which column of that row was selected. Currently, I would override onBrowserEvent2 protected void onBrowserEvent2(Event event) { // Get the event target. EventTarget eventTarget =…
Blessed Geek
  • 21,058
  • 23
  • 106
  • 176
1
2 3
8 9