Questions tagged [gwt-2.2]

12 questions
6
votes
3 answers

how to add column of ClickableTextCells to cellTable

hi all i need a simple example show me how to add column of ClickableTextCells to cellTable thanks.
ahmed Shoeib
  • 254
  • 6
  • 22
5
votes
4 answers

Setting the width of a column without clipping TextInputCell in GWT 2.2 CellTable?

I have a rather peculiar problem. I am using CellTable from GWT 2.2 release. The CellTable is configured for fixed layout. I have a editable column (TextInputCell) in the table. I am currently using setColumnWidth method on the CellTabel to fix the…
Ashwin Prabhu
  • 9,285
  • 5
  • 49
  • 82
5
votes
1 answer

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 another MultipleSelectionModel to make mass delete…
Vladislav Bauer
  • 952
  • 8
  • 19
4
votes
1 answer

GWT (event.getCharCode) behaves differently in IE and Firefox

I was going through the tutorial available on GWT website for StockWatcher application and testing the application as described in Step4: Manage Events on the Client. Below piece of code behaves differently in Firefox and IE7. In IE7 this works…
Vicky
  • 5,380
  • 18
  • 60
  • 83
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
1
vote
1 answer

Delete a list of entity with RequestFactory (GWT)

How can I delete a list of entity with RequestFactory? InstanceRequest, Void> remove(); Of course, this is not working, because the first parameter has to be like this: P extends BaseProxy; but is there a similar way? I want to delete…
ngspkinga
  • 421
  • 5
  • 16
1
vote
7 answers

GWT - Problems styling a TabLayoutPanel

I want to implement a horizontal navbar using a TabLayoutPanel, using custom styling to fit my needs. But I don't know how to override the default styling. Here's the UiBinder template:
helpermethod
  • 59,493
  • 71
  • 188
  • 276
1
vote
3 answers

Adding anchor to cellTable Column

i am trying to add anchor to cell Table column is there a way to do this ???? thanks.
ahmed Shoeib
  • 254
  • 6
  • 22
0
votes
1 answer

installing GWT 2.2.0 plugin on Eclipse 3.4 is not working?

I am trying to install GWT 2.2.0 plugin for Eclipse 3.4 (Ganymede), from help->Software updates->Available software, I added this URL: http://dl.google.com/eclipse/plugin/3.4, but it complained with this message "No repository found at this URL". I…
Y.H.
  • 2,687
  • 1
  • 29
  • 38
0
votes
1 answer

GWT - Throwing an exception vs returning null

Suppose you have a method like this implemented on server side: @Override public User login(String username, String password) throws AuthenticationFailedException { // obtain hash from user's db entry - omitted to simplify code String…
helpermethod
  • 59,493
  • 71
  • 188
  • 276
0
votes
1 answer

How disable widget?

I use GWT Editors framework for data binding. I have next code: AAAView.java public interface AAAView extends Editor { public interface Presenter { } public interface Driver extends SimpleBeanEditorDriver { } void…
VMN
  • 275
  • 2
  • 13
0
votes
1 answer

Gwt MouseDownHandler usage

I am trying to figure out to use a MouseDownHandler with a ListBox. I have the following code: myCombo.addMouseDownHandler(new MouseDownHandler(){ Window.alert("WORKING"); }); I get this error however. The method …
james
  • 2,595
  • 9
  • 43
  • 70