Questions tagged [gwt-2.2-celltable]

93 questions
2
votes
1 answer

GWT SimplePager : How to provide GoTo Functionality in pager?

I am usign GWT2.3. We developed CustomPager by overriding SimplePager. We override createText() method such a way that we are showing string like "Page 1 of 4" using following code public String createText() { …
StackOverFlow
  • 4,486
  • 12
  • 52
  • 87
2
votes
1 answer

GWT CELLTABLE pager How to determine which button is clicked by user?

I am using celltable , GWT2.3.0 How to determine which button is clicked by user ? Is there any way to find out NEXT,PREV,LAST & FIRST button clicked ? Any help or guidance in this matter would be appreciated
StackOverFlow
  • 4,486
  • 12
  • 52
  • 87
2
votes
1 answer

GWT Celltable resize

I'm developing an application using GWT. I'm using celltable to display dynamic values from database (based on a query). I have following queries: Assume: I have set the table height as 100px. I have placed the table in a scrollpanel. Now, My query…
Ashok
  • 1,902
  • 3
  • 22
  • 30
2
votes
2 answers

GWT - How to sort celltable column?

I'm reading about how to add column sort functions to a cell table but I'm not understanding the code provided by google. Following is my celltable, How would I add make the nameColumn sort-able? public class CellTableExample implements EntryPoint…
sap
  • 1,141
  • 6
  • 41
  • 62
2
votes
1 answer

Get values of GWT Selected checkbox in Celltable

In a GWT celltable I have many rows associated with CheckboxCell.I need to know only the values of the selected checkboxes on a particular event.
user889244
  • 21
  • 1
  • 4
2
votes
3 answers

GWT celltable - delete button does not delete row from table

I added a buttoncell column to a celltable using the following code: public class CellTableExample implements EntryPoint { private static class Contact { private String address; private String name; public Contact(String name, String…
sap
  • 1,141
  • 6
  • 41
  • 62
2
votes
0 answers

GWT CELLTABLE : How to add empty row in celltable with different celltype

How to add empty row in celltable with different celltype ? 4 columns present in my celltable i.e. DatePickerCell,EditTextCell,NumberCell,SelectionCell I can able to set record values in cell with different celltype. I want to add empty row with…
StackOverFlow
  • 4,486
  • 12
  • 52
  • 87
2
votes
2 answers

GWT Customize CellList Multi-Selection Model for Mobile Devices

I have an application, that uses the MultiSelectionModel, and it works great, but I need the site I'm developing to work on mobile devices, and so I can't use the keyboard to assist in selecting the elements (since it doesn't exist). EX: On the…
napo
  • 85
  • 1
  • 7
2
votes
2 answers

GWT Celltable and TABbing

So i have a GWT cellTable with various inputs, including selectboxes, EditTextCells and some links. I would like TAB to go along each cell. However, currently i can only get the TAB switching to go between the selectboxes(when…
user824378
  • 21
  • 2
2
votes
1 answer

GWT CellTable Sort Column With Custom Header

I have a sortable column in a CellTable. The problem is that I have a custom Header, in the header there is a text box. When the user clicks the text box, the column is sorted and the text box looses focus. What I need is for the sort to happen…
Matthew Sowders
  • 1,640
  • 1
  • 19
  • 32
2
votes
1 answer

How to programmatically update specific row in GWT CellTable

I have 5 rows in GWT CellTable. The table has 2 columns id, value. I have gwt timer which must periodically update value for specific id. So in timer implementation i call something like that: .... double value = calcValueForId(id); update(id,…
user358448
  • 1,127
  • 3
  • 20
  • 39
2
votes
1 answer

I want my CheckboxCell to control the selected state of each row

I've got a CellTable with a column rendered with a CheckboxCell. I want to check the boxes to select the rows. The default behavior with CheckboxCell(false, false) is tantalizingly close to my goal - selecting a row checks the checkbox, and…
Riley Lark
  • 20,660
  • 15
  • 80
  • 128
2
votes
1 answer

Tree like widget in GWT CellTable

I have a requirement of a tree like widget in a CellTable and so far I haven't found anything that works seamlessly. So, I was evaluating celltree. As most of my functionality is ready with CellTable and as tree like requirement has come very late…
Manish
  • 909
  • 1
  • 11
  • 23
2
votes
1 answer

GWT's CellTable loading bar won't display while refreshing contents

I do the following: Create the CellTable (loading bar displays) Put data in it (loading bar disappears, data appears) I now want to: Clear data and show the loading bar Put more data in it (loading bar disappears, data appears) Has anyone…
upshake
  • 969
  • 1
  • 11
  • 22
2
votes
1 answer

How to capture NativeEvent.getKeyCode of "shift+anykey"

This is in continuation of my other question. I am checking if a valid character or number is being pressed Valid Characters - A to Z and a-z, these characters can be entered using "SHIFT+A=a" and vice-versa "SHIFT+a=A". I am restricting the user to…
S Jagdeesh
  • 1,523
  • 2
  • 28
  • 47