Cell tables and data grids are gwt ui components usually bound to domain objects/ pojos. Very fast and efficient and with powerful API, somewhat complex to extend on first sight.
0
votes
2answers
30 views
Celltable onBrowserEvent is not getting called
I have written below code in a celltable constructor
public ViewSubscriptionsCellTable(CellTableResource resource, final WidgetListener clickListener) {
super(15, resource);
...
-1
votes
0answers
10 views
Padding and Margin
I've been trying to disappear the margin and padding of a cell that includes a table, i've created a css and assign it to the table, the cell and the inside table, but it doesn't work, there is the ...
1
vote
1answer
35 views
Make the rows of the datagrid draggable in GWT
I want to make a datagrid in which rows will be draggable so that a person can move rows up and down by dragging the rows. As row of the datagrid will be get as an element. I know how to make the ...
0
votes
1answer
41 views
GWT CellTable SelectionModel can not deselect item after editing
Hello I have a Contact class with informations which i show in a CellTable.
The CellTable has a DataListProvider, MultiSelectionModel and KeyProvider
which checks the id of the Contact.
...
0
votes
0answers
68 views
Using tabulator to navigate in GWT celltable after change event
To enable tabulator navigation in celltable I set
cellTable.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.DISABLED);
and created my own TextInputCell without tabindex="-1" in the Template. ...
0
votes
2answers
40 views
GWT, why CellTable doesn't show Image when running in Eclipse?
I have the code:
ClickableTextCell imageCell = new ClickableTextCell() {
@Override
public void render(Context context, SafeHtml data, SafeHtmlBuilder sb) {
if (data != null) {
...
0
votes
3answers
26 views
In gwt , what is the simplest code to count total of rows in a celltable?
Given:
CellTable<List<String>> table = new CellTable<List<String>>();
ListDataProvider<List<String>> dataProvider = new ...
0
votes
1answer
39 views
GWT filler rows in a CellTable
I currently have a CellTable which I expanded with a filter/paging/sorting.
I am working on adding more features too.
One things that bugs me though, is when you set the limit for a page to be for ...
0
votes
1answer
40 views
GWT, columnSortHandler.setComparator for all columns in a loop, make the sorting messed-up?
I've got this code:
ListHandler<List<String>> columnSortHandler = new ListHandler<List<String>>(list);
for (int k=0; k<10; k++){
IndexedColumn myColumn=new ...
-1
votes
1answer
31 views
In Gwt, how to capture simple MouseOverEvent for CellTable (ie when a user simply mouses over any part of a celtable, it will generate a message)?
I found a code that handle mouse over event whenever a user mouses over any cell:
table.addCellPreviewHandler(new Handler<List<String>>()
{
...
1
vote
2answers
64 views
Difference between Datagrid and CellTable in GWT
What is the difference between the Datagrid and Celltable?
I know that following major differences
Datagrid provides RequiresResize.onResize() functionality while celltable does not give this
...
0
votes
0answers
87 views
GWT CellTable with filter and pagination
I am trying to expand the functionality of my simple Cell Table.
I followed this persons example: link
I want to add paging for the filtered table, in my code below I got paging to work for when a ...
0
votes
4answers
73 views
GWT, ListHandler<List<String>> columnSortHandler does not sort properly
I got these code:
ListHandler<List<String>> columnSortHandler = new ListHandler<List<String>>(
list);
...
1
vote
1answer
36 views
Celltable with fixed number of rows
I have 2 celltables on my page positioned vertically (one below the other). How can I set fixed number of rows in celltable (independently on the number of data rows)? E.g. when celltable contains 0 ...
0
votes
1answer
158 views
GWT UiBinder CellTable is not rendered with AsyncDataProvider
I want to have on my page created with UIBinder a CellTable with data, received from server.
I think I dont quite understand the logic of UiBinder. What steps should I do before calling initWidget(), ...
2
votes
1answer
61 views
GWT: SelectionChangeEvent.Handler does not detect deselect of row on CellTable
So I have this piece of code which is almost exactly the same on the GWT Showcase
selectionModel = new SingleSelectionModel<T>(keyProvider);
cellTable.setSelectionModel(selectionModel);
...
2
votes
3answers
99 views
in GWT, How to add a row on top of header of celltable?
This is very interesting, how can we add a row on top of header of celltable in GWT?
Ok, Say,GWT Header only support sorting, but i want to do other stuffs on each of the column as well (such filter, ...
0
votes
1answer
36 views
GWT Propagate event through AbsolutePanel
I have a CellTable with ClickableCell. When I click on it, a popup opens and show the clicked cell table as exepected. The CellTable is added in a AbsolutePanel(Parent).
For some developpment, an ...
0
votes
1answer
37 views
Celltable GWT Sorting
i've been searching now for couple of days but i cannot find something that helps me.
I have a few columns and sorthandlers, so the sorting itself is no problem.
But is it possible to set ...
0
votes
1answer
92 views
GWT - update table in panel
I have a verticalPanel with a table in it. OnModuleLoad I get data from database which I display in a table. On button click I want to add new data from a listbox to it. It works fine but I dont know ...
2
votes
2answers
74 views
Setting GWT celltable data from presenter
I am new for GWT. I would like to know, is it possible to set the cell table content from the GWT Presenter? Is it OK to set the cell table data from the view itself and still following the MVP ...
2
votes
1answer
202 views
Adding dynamically user control to a Asp Table
I'm trying to add dynamically an input checkbox type and a asp textbox to a Asp Tablecell, using some data from a dataset. I've read few post about this but none has the combination want to reach.
...
1
vote
2answers
120 views
gwt cell table dynamic columns - sorting
You can represent your "rows" as List<String> instances, you have to change your parameterization from String to List in your Grid, Column and data provider; and of course you have to call ...
0
votes
2answers
117 views
Waiting for data for CellTable in GWT
I'm using GWT 2.4 with RequestFactory mechanism. With bigger portions of data there is some extra time (1-2 sec) for celltables to get populated. During that time celltable is empty and user doesn't ...
1
vote
1answer
158 views
Horizontal scrolling of celltable in GWT
In my GWT 2.4 app I'm having cell tables with >10 columns. I'm wondering how to add horizontal scrollbar to these tables because for some screen resolutions some columns are hidden.
Thanks for any ...
0
votes
1answer
53 views
How to I apply a custom cell class to a CellTable using GWT 2.5? [duplicate]
If I define a custom cell extending AbstractCell how to I use my custom cell in a CellTable?
My custom cell is composed of two Labels and an Image and is populated by a Contact object that holds the ...
4
votes
2answers
328 views
GWT SimplePager - Getting Incorrect pager index onclick of pager's LastButton
I am using my GWT 2.3 Celltable & SimplePager
Written CustomPager by extending SimplePager class.
Used ListBox to show different page size for celltable like 10,20,50,100
I am showing 11 ...
0
votes
1answer
87 views
GWT: CellTable inside FlowPanel inside TabPanel
I have a CellTable widget (item that extends Composite and has a CellTable + Pager via UiBinder), which is inside a FlowPanel, which is the contents of a tab for a TabPanel.
I've set the height and ...
1
vote
2answers
169 views
GWT CellTable Data Not Displaying
I have the following code in my modules onModuleLoad() method:
List<MyPromo> promotionData = new ArrayList<MyPromo>();
MyPromo promotion1 = new MyPromo(...);
...
0
votes
0answers
92 views
GWT CellTable CSS Style refresh issues
In GWT, by using CellTable which was bundled with celltable.css, I got a table like
TripName | TripDetail
Trip1 | TripDetail_1
Trip2 | TripDetail_2
Trip3 | TripDetail_3
For ...
0
votes
2answers
70 views
How to keep odd/even background colors on selection?
I have a GWT DataGrid (CellTable) with different background colors for odd/even rows:
.dataGridEvenRow { background: white !important; }
.dataGridEvenRowCell { border: selectionBorderWidth solid ...
0
votes
1answer
238 views
GWT CheckboxCell hinders selection in CellTable
I discovered that if you have a GWT CellTable and add a column that contains a CheckboxCell, the selection via a SingleSelectionModel does not work anymore. This cell type does hinder the row ...
0
votes
1answer
120 views
Colspan and Rowspan in CellTable
I'm implementing a table which has both colspan and rowspan cells. I used FlexTable before but decided to use CellTable. But it looks like CellTable does not support adding style while FlexTable ...
1
vote
5answers
303 views
GWT CellTable keep focus on selected row
When I select a row in a CellTable which contains several columns, the whole row gets colored in yellow. It does not depend on which area of the row I click (which column of the row).
What I try to ...
0
votes
1answer
128 views
How to add custom jquery datepicker in column of GWT Celltable?
I am using GWT 2.3 Celltable.
I used DatePickerCell provided by GWT by using following code
DatePickerCell datePickerCell= new DatePickerCell(DateTimeFormat.getFormat(dateFormat));
final ...
1
vote
0answers
63 views
Create GWT CellTable Dynamically - sorting
Create GWT CellTable Dynamically -
refer to the earlier question : Create GWT CellTable Dynamically
for this dynamic celltable, I would like to do sorting based on a column dynamically.
How to do ...
0
votes
0answers
77 views
GWT CompositeCell Cells Communication
I'm trying to make a composite cell wich consist of a TextInputCell and a ButtonCell. The idea is that the button opens a popup where i can select an item, an after selecting it, it has to appear on ...
1
vote
1answer
195 views
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 ...
0
votes
1answer
272 views
How to add custom keyboard shortcuts to GWT CellTable
I created a CellTable in GWT and I set
.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.ENABLED);
to enable the use of keyboad.
Now I can move up and down with keyboard and press spacebar to ...
2
votes
1answer
182 views
GWT TextInputCell value change handler
I started using the CellTable widget. I need an editable text cell so I tried TextInputCell but to my dismay, I can't find the "value change handler".
How can I get notified when the cell content ...
1
vote
2answers
245 views
Programatic CellTable sort in GWT not working
I'm using the ListDataProvider example here as a guide. The columns are sorting fine as expectd based on the provided comparators. I'm trying to programatically apply a sort as alluded to on this line ...
2
votes
1answer
217 views
GWT DataGrid with editable sub rows
I have created a DataGrid with GWT 2.5, based on the DataGrid from the GWT showcase. The main difference from there is, that I need editable cells in the sub rows.
When changing the TableBuilder for ...
0
votes
3answers
289 views
GWT DataGrid/CellTable: Select all over multiple pages
I´m using GWT 2.4 with a DataGrid and a SimplePager along with a MultiSelectionModel. I want to implement a simple select-all-feature over all pages.
I´m only able to select all visible items on the ...
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 ...
2
votes
1answer
69 views
Is it possible to span a header of a celltable GWT
I want to create a header in CellTable as follows.
The workaround I think of is to add a panel with "Main title" just above the table.
0
votes
0answers
84 views
ButtonCell in CellTable footer only works in first column
I have a cell table with a custom button as a footer in one of the columns which works fine. But when I try to move the button to another column the clickevent (valueupdater) of the button does not ...
0
votes
1answer
295 views
Dynamic styles for GWT cellTable cells
I'm having an issue using GWT. I'm building the columns of a cellTable and I want the style of a cell to depends of the value of that cell:
Column<MyProxy, MyProxy> editButtonColumn = new ...
0
votes
1answer
104 views
java gwt multiselectionmodel disable blue
I'm using multiselectionmodel for a cell table. When clicking on a row it is changed to a blue format. Is it somehow possible to disable this? Probably in a .css file?
0
votes
1answer
359 views
java gwt celltable with checkbox
I have a Cell Table of which the last column is a checkbox. I would like to add a Check-All-Box as a footer that when clicked selects every checkbox for every row. Somehow it won't work here is what I ...
1
vote
2answers
108 views
GWT CellTable getRowElement throwing IndexOutOfBoundsException
I am using a CellTable in GWT and trying to add styling to a row whenever certain events happen. The code to add styling is as follows:
Range range = playlistTable.getVisibleRange();
int start = ...




