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
3
votes
3 answers

GWT EditTextCell : How to increase editable TextBox width in EditTextCell?

I am using GWT2.3 in my project. I want to increase editableTextBox width when user click on editableTextCell. Problem is My Column width is 200 Px. when user clicks on editableTextCell then that TextBox width is around 125px in EditableTextCell is…
StackOverFlow
  • 4,486
  • 12
  • 52
  • 87
3
votes
1 answer

How to Update Cell Table Footer Dynamically

I am trying to add footer to the celltable and finding hard time to change the celltable footer dynamically but i am able to add while creating columns like below cellTable.addColumn(qty, "Qty",Integer.toString(totalQty)); This is not i am looking…
moh
  • 1,426
  • 2
  • 16
  • 43
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
1 answer

GWT : Render a hyperlink in a TextColumn of a CellTable

First of all - I am a beginner with Java and GWT. I have a scripting language background so please be explicit. I have a CellTable that is populated with data from a database( ServerKeyWord class gets the data ). myCellTable.addColumn(new…
Cucu
  • 185
  • 12
3
votes
4 answers

How to create dependant dropndown/selection cell In GWT celltable 2.3?

I am using gwt2.3 celltable. In my celltable there will be multiple column out of that few columns are dependent. ex. Name and address columns are dependent Name and address columns contains my custom selection cells. In Name column : 1 cell…
StackOverFlow
  • 4,486
  • 12
  • 52
  • 87
3
votes
3 answers

How can I get the selected row in a GWT CellTable when the keys up and down are used?

I want to get the selected row in a GWT CellTable when the user pressed down the keys up or down. In my example I have a table with three columns (ID, name, date) and I have implemented the code to handle the click event. When clicking a row I get…
Victor_JF
  • 31
  • 1
  • 2
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
5 answers

GWT CellTable tooltip not working properly

I am using a CellTable and I want to show a tooltip whenever I hover over any of the cell. My code is working fine but the tooltip is not changing its position. What I mean to say is, if I hover over cell 1 tooltip shows and then if I hover over…
EMM
  • 1,812
  • 8
  • 36
  • 58
3
votes
2 answers

Gwt performance issue : huge data and celltable

I have a server-side service that sends me huge DTOs. I need to put them in a CellTable. It's like 10-200 lines, and i need to see everything at the same time. I have a server-side log that traces the last "man-made" line of code of my service (just…
Maxime ARNSTAMM
  • 5,274
  • 10
  • 53
  • 76
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…
2
votes
2 answers

How to add Widget as a Cell in Cell Table GWT

Now I'm stuck in issue of pagination the widgets in GWT. I'm using Cell table to display a list of instances of an UI Binder class of mine (Ex: LocationView). http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable This is the showcase of…
Michael Vu
  • 66
  • 1
  • 6
2
votes
3 answers

How do I programmatically get info about a CellTable's headers?

I'm using GWT 2.4. I have a com.google.gwt.user.cellview.client.CellTable widget, but I'm having trouble figuring out a programmatic way to get the String headers after the widget is constructed. I add column data like so ...…
Dave
  • 15,639
  • 133
  • 442
  • 830
2
votes
1 answer

CellTable height shrinks upon paging

IMPORTANT :: This issue in entirely different to another similarly titled issue on Stack Overflow. I have a CellTable working beautifully in conjunction with an RPC-backed AsyncDataProvider in GWT 2.5.1. The RPC is extremely fast to respond, coming…
Chris
  • 4,450
  • 3
  • 38
  • 49
2
votes
1 answer

Any other way to style CellTables in GWT, other than ClientBundle?

Two-part question. 1) I have absolutely nothing against ClientBundle; it's great (minification, obfuscation, etc, of the developer's input CSS), but I'm wondering, is there is another way to style a CellTable? The obfuscated (generated) class names…
foamroll
  • 752
  • 7
  • 23
2
votes
1 answer

GWT wait for setVisibleRangeAndClearData to finish

This a variant for the classic "wait rpc call problem" in GWT. I have done a complete CRUD screen in GWT, calling RPC to atack an Oracle database. It has one panel for the search criteria and the results table, and other for the detail fields. I…
David
  • 109
  • 2
  • 9
1
2
3
8 9