Questions tagged [celltable]

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.

203 questions
0
votes
1 answer

Append custom style to a widget extending GWT CellTable

I implemented my own widget by extending GWT CellTable. I am now looking to remove the 2px table borders that GWT has by default on the table. Here is the structure of my custom widget: public class CustomWidget extends CellTable { public…
Darkane
  • 63
  • 1
  • 9
0
votes
1 answer

How do I prevent a CellTable RowElement from being redrawn after a SelectionChangehander fires?

I'm probably doing something else wrong but I've followed examples given here: How to remove a row from the Cell Table and GWT get CellTable contents for printing or export to accomplish my goal and the result is close but not quite right. I have…
Miniversal
  • 129
  • 2
  • 13
0
votes
2 answers

GWT CellTable rebuilding rows unnecessarily

I have found an interesting issue, and I am wondering if I am misusing or overlooking something. I have a large CellTable that is vertically scrollable. I want to show all the rows at once instead of traditional pagination. So at the bottom of my…
Will
  • 292
  • 4
  • 16
0
votes
0 answers

GWT mix two objects in my TreeViewModel

I Have this Model : 1) Team : public class Team { private String nom ; private Employee leader ; private List members = new ArrayList(); private List persons = new ArrayList(); public Team() { } public…
Ghaffe
  • 13
  • 2
0
votes
1 answer

GWT - What layout can help for expense report by quarter

I need to create a quarterly expense report and I am confused what layout and widgets would be useful here Quarter 1 Quarter 2 Quarter 3 Expense 1 Expense 2 Expense 3 I understand Celltable and DataGrids, but not sure If I can…
V Kumar
  • 25
  • 5
0
votes
1 answer

In GWT CellTable, how can I make a cell consume a click event so it wont reach the row?

I have a CellTable with a few rows for which I use MultiSelectionModel. The first column is a column of checkbox cells. When the user checks one of the checkboxes the row becomes selected (as per the example in the site) and when the user clicks a…
Oberon
  • 93
  • 1
  • 7
0
votes
1 answer

GWT CellTable with UiBinder not working

I am trying to render a Celltable with UiBinder but I only get a blank screen. Here is my code: VDataGrid.ui.xml
V Kumar
  • 25
  • 5
0
votes
1 answer

Dynamically update SelectionCell in CellTable in GWT

I am using gwt sdk 2.6.0 . Please find my simplified problem statement below, I have a CellTable containing Column as A and B . Col A contains non-editable value and Col B contains dropdown (SelectionCell) . Col B dropdown options should be…
Avinash Jethy
  • 87
  • 1
  • 6
0
votes
1 answer

How to sort Date Column with empty cells in CellTable GWT

I have a CellTable in GWT and a Date Column. But the cell of this column may be empty I want to add sorting by order to this column like this. and if the column is empty at all, I don't need to sort table. I wrote the comparator public class…
olgacosta
  • 1,076
  • 4
  • 15
  • 36
0
votes
1 answer

GWT Custom header with a TextBox (TextInputCell) in my CellTable -> How to override onBrowserEvent?

I would like to use a custom header with a TextBox (TextInputCell) in my CellTable. I found this example and tried to adapt it: GWT 2: how can I add Button to the CellTable's header? public static class BtnHeader extends Header{ public…
Tim
  • 3,910
  • 8
  • 45
  • 80
0
votes
1 answer

Disable click handler on specific cells in GWT CellTable

I'm writing a webapp with GWT for the first time. The app includes a grid with rows that, when clicked, will show a more detailed description of the row's contents. I managed to add the click handler into the table, but some columns had dropdowns…
JShweky
  • 139
  • 7
0
votes
1 answer

How to create a drop down list on right click in GWT

I am creating a Dropdown list which should have CREATE, DELETE, SUBMIT for a particular row in a table. Can someone help me how to create one in GWT. table.addCellPreviewHandler(new Handler() { @Override public…
Trisha
  • 63
  • 7
0
votes
2 answers

How to make an input fit nicely inside a cell in a CellTable?

In the screenshot above the input width exceeds the column width. How to make it fit perfectly inside a column?
Ajinkya
  • 111
  • 1
  • 3
  • 13
0
votes
1 answer

GWT cellTable - new row handler?

I want to change some fields every time my cellTable content changes (new row, row change). Is there any predefined event/handler for that?
Piotr Sołtysiak
  • 998
  • 5
  • 13
0
votes
1 answer

GWT CellTable resize height within Layout

I'm trying to dynamiclly resize a CellTable within my whole layout and I'm not sure if its even possible. My main layout (uiBinder)
vicR
  • 789
  • 4
  • 23
  • 52