The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
24 views

Discard updated value from a valueupdater in a CellTable fails

I want to check the updated value before persisting it. If the check fails, I want to discard the update but that doesn´t work. EditTextCell cell = new EditTextCell(); Column<AnObject, String> ...
0
votes
0answers
94 views

asyncdataprovider on page change shows only last record

I have problem, that on page change using AsyncDataProvider CellTable shows only last record, whereas rpc service brings 20 records notificationsTable = new CellTable(); //Create a Pager to ...
1
vote
1answer
51 views

How can I get the text in a EmptyTableWidget in GWT CellTable

My code is CellTable celltable = new CellTable(); celltable.setEmptyTableWidget(new Label("No")); Here I want to get this "No" from CellTable I tried as ...
1
vote
1answer
804 views

GWT How to make a composite Cell composed of 2 kinds of cells or how to make a custom cell with image and text

I want to add a column in a celltable/datagrid which contains image + text. I just do some research and found out maybe there are 3 ways to do this. make an ImageResourceCell and a TextCell then ...
0
votes
0answers
368 views

How can I wrap the text inside the GWT CellTable cell?

I need to wrap the text of the column. My column size is small. So if i set column width some of the letters are not visible. Since the length of the text is bigger than the column size. If there is a ...
0
votes
2answers
769 views

How to add a custom selection Handler to a celltable

I want to add a special selection model to the celltable. Basically the function i want to have is to select a row on the table which is located on left side, a corresponding form will pop up on the ...
3
votes
1answer
842 views

GWT CellTable selection and single click on CheckBoxCell

I've got a CellTable wich work with SingleSelectionModel to make single selection and show some information into details panel. Also I've got CheckBoxCell column into this CellTable which work with ...
2
votes
2answers
180 views

How to add a css class to the first column of a CellTable widget (GWT)?

I use a CellTable widget in GWT. I want to change the font size of every texts contained in the first column. The method addColumnStyleName does not fit my need because it adds the class to the ...
1
vote
1answer
161 views

How to use a canvas as a cell of a celltable widget with GWT?

All is in the question, how can I create a custom cell with a canvas on it by using a CellTable in GWT ? I search a way to transform the canvas into html to append it to the SafeHtmlBuilder parameter ...
2
votes
2answers
944 views

GWT CellTable Custom Selection Model

I need a 'custom selection model' for GWT CellTable. One of the columns in CellTable is a Checkbox column. Basic rquirements (both work in solution below): - Row click (not on checkbox), selects that ...
0
votes
1answer
38 views

Display a collection in a cell?

Im using a CellTable to display my data. But my data has fields that is a collection of string. I wonder if there's any recommendation for this purpose. What do you do in this case?
1
vote
2answers
161 views

How to create CellTable based on the response from the server

I need help for the following items, I want to create a CellTable. But Columns of the celltable should be based on the response from the server. I'm getting the server response as List. ...
1
vote
2answers
371 views

GWT Celltable : How to avoid entering particular value in particular cell of Celltable?

How to avoid entering particular value in editTextCell- column- Celltable? Is there any event in editTextCell? Validation while entering values in cells of celltable In case of String :Dont enter ...
3
votes
4answers
1k views

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 ...
1
vote
1answer
179 views

celltable - howto use an image as celltable background (or row background)

I need to use an image as table background (as entire row background will works). I tried this: .cellTableOddRow { background-image: url(image.jpg); background-repeat: repeat-y; width: ...
0
votes
1answer
373 views

How would I create a custom GWT CellTable class?

I have a CellTable created in GWT that allows users to update/delete records in a database. This kind of table will be used in about 10 different places with very minimal changes (same number of ...
0
votes
2answers
626 views

How to open a Popup Panel by clicking a cell in the CellTable?

I have a CellTable being displayed like shown below- On click of the Delete button I want to open a Popup panel in the center of the screen which should contain a Flow Panel and a Button within it. ...
2
votes
2answers
503 views

How can I get the height of a GWT CellTable after it's done rendering?

I am familar with getOffsetHeight and getElement.getClientHeight. The problem is I can't find when to call these methods to get the rendered height of my CellTable. I've tried adding an attach ...
0
votes
1answer
632 views

CellTable is not visible in TabLayoutPanel

I have an EntryPoint class WebCrawlerOne.java which contains the TabLayoutPanel and in one of the tabs I am calling CrawlerOne.java which contains the CellTable. I have tried a lot but am not able to ...
1
vote
1answer
492 views

Adding an editable numeric cell to celltable

I am using GWT's CellTable for a non-editable number cell, and it works fine. Is there a standard approach for an editable number cell? If so, please provide some sample code.
2
votes
1answer
98 views

paginaton is not working in gwtcelltable?

i am using simplepager class for adding pagination to the cell table,it was displaying the values for the first time while i was trying to view the next page results it shows nothing.... my code is: ...
0
votes
1answer
566 views

Style individual cells in CellTable using CSSResources

Basically I want to implement something similar to the the cell-coloring which is defined in the GWT documentation However I don't want to specify the style directly on the DIV element but want to ...
2
votes
1answer
464 views

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 ...
3
votes
3answers
911 views

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

Gwt celltable : Unexpected behavior : when record deleted from page then other record repeated in page

I am using celltable -- gwt2.3. I found strange behavior in celltable. My celltable's pagesize is 10. Total 13 records. When Page contains 3 records A 1 11 B 2 22 C 3 33 When I deleted any one record ...
1
vote
1answer
436 views

GWT Celltable : Custom DatePickerCell

I want to use customDatePickerCell in CellTable. Current GWT2.3 Datepicker cell is as follows I am using GWT 2.3. DatePicker cell showing Navigation only for month not for year also there is no ...
0
votes
1answer
671 views

GWT celltable How to create selectioncell in edittextcell?

I want to create editable cell with datatype boolean. I don't want to use selectioncell for boolean data type My testBooleanColumn column's cell contains string with value true,false.......... when ...
1
vote
1answer
301 views

How to set column's cell value depending on changes in other column?

I have 3 column + 10 rows in celltable. value1Column, value2Column, RecordState 1 | 2 | * 2 | 4 | - : 9 | 5 | - 10| 5 | * Whenever user changes values either value1 or value2 then immediately ...
0
votes
2answers
914 views

GWT Celltable How to make Non-Editable cell in Editable column

I added EditTextCell(stringTestEditTextCell) to Column(testColumn). EditTextCell editTextCell = new EditTextCell(); Column stringColumn = new Column( editTextCell) { ...
0
votes
1answer
252 views

GWT implementing— Sophistication of CellTable behavior, flexibility of CellList look

With a GWT CellTable its possible to add different columns that handle the click event in different ways. For example lets say we have 3 columns: an Avatar Image (ImageCell), a name (TextCell), ...
4
votes
2answers
3k views

GWT CellList Click to Toggle selection (Multi-Selection)

I'd like to setup a CellList so that clicking a row will toggle the selection. Such that multiple rows can be selected with out the need for holding the ctrl key. What do I need to change to get it ...
1
vote
1answer
1k views

GWT - Clickhandler on a TextColumn in cellTable

Is there a way to add a clickHandler to a Column in a cellTable in GWT ?? I do not see any option from the documentation for TextColumn. My requiremnt goes this way - I have to display 5 columns of ...
0
votes
2answers
592 views

GWT CELLTABLE : How to add column in celltable which is combination of non-editable text + hyperlink

I want to add link in my celltable's column i.e"validationStatus" some values are "valid" as well as "invalid" when value is invalid then I want to make invalid as link (How to ?) & when value is ...
0
votes
1answer
656 views

GWT CELLTABLE : How to set columns descending icon on celltable header?

How to set columns descending icon i.e. DESC icon on celltable header ? On celltable loading.. I want to set sorting order to column i.e. previously sorted column/sorting order by user (In last ...
2
votes
1answer
263 views

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 ...
1
vote
2answers
973 views

create link in table cell and open float popup by click from it

I have a CellTable and need a column with hyper links and onclick handlers inside cells. 1st question, what am doing wrong if I have: Column<MyObject, Anchor> linkColumn = new ...
1
vote
1answer
492 views

Update the image in gwt CellList

I am storing image in Google App Engine using Blob. When i add new data in CellList using ListDataProvider's add() method its getting render perfect. Below is the extended version of AbstractCell: ...
0
votes
1answer
2k views

GWT CELLTABLE column's cell value updation

I am using gwt2.3 My celltable contains 10 rows, 5 columns. All cells in 1st row is empty,editable. Whenever user clicks on column cell lets say 1st row X 3rd column then user will edit that cell ...
1
vote
1answer
1k views

CellTable paging with SimplePager

Referring to this bug: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/45e77082b796281d/d5101729e83a74ff?lnk=gst&q=pager%20last%20page#d5101729e83a74ff Well, I want a ...
2
votes
1answer
747 views

Prevent GWT EditTextCell from flipping when switching between edit and non-edit-mode

I've noticed that my web application jumps around in cell width when I click into my EditTextCell. As I've seen on http://gwt.google.com/samples/Showcase/Showcase.html#!CwCellTable it's possible to ...
1
vote
2answers
379 views

GWT: How to center element containing CellTable?

I'm trying to center an element that contains a CellTable. The actual centering logic works okay, but I'm having problems with all those attaching/detaching events. Basically, I'm doing this in my ...
1
vote
3answers
2k views

gwt - celltable - adding extra row

enter code hereI have a celltable and the columns contains some numbers. I want to add an extra row at the end of the table which will hold the total for each column. Is there any way to do this? ...
2
votes
1answer
2k views

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 ...
3
votes
3answers
2k views

Creating custom ActionCell in CellTable Column

I want one of my table columns to have a deleteButton. ActionCell<Entrata> deleteCell = new ActionCell<Entrata>("x",new Delegate<Entrata>() { @Override ...
1
vote
1answer
5k views

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? ...
2
votes
1answer
1k views

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.
1
vote
3answers
2k views

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 ...
2
votes
2answers
2k views

Cell colors in a GWT CellTable

I'm using a CellTable and would like to programatically change the background color of certain cells in some situations. I tried it with an Custom Cell as described in the documentation and changed ...
2
votes
1answer
1k views

GWT CELLTABLE SimplePager : Event handling on first,last,next,prev button present in SimplePager?

How to handle event on SimplePager? Event handling on first,last,next,prev button present in SimplePager? I am using CellTable gwt 2.3.0 Right now I am parsing xml in which 100 records are present. ...
0
votes
1answer
190 views

GWT CELLTABLE : Is it possible that all column values from particular row restore to old value?

Is it possible that all column values from particular row restore to old value ? || ID || Dept || Code || RNO || RCode|| .....................................................||ZCode || || 1 || CS ...

1 2