You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
Hi,
I´am not able to get a DoubleClick working on a row in a CellTable
widget.
I found an article in this group "ClickableCell double click event
(CellTable) " - but I can´t get it to work!
The following code works - but I get still the double click on the
celltable header.
MyCellTableClass
...
sinkEvents(Event.ONDBLCLICK);
...
@Override
public void onBrowserEvent(Event event) {
switch (DOM.eventGetType(event)) {
case Event.ONDBLCLICK:
AppUtils.EVENT_BUS.fireEvent(new
ShowFplDetailsEvent(selectionModel.getSelectedObject()));
break;
}
}
Could anybody give me an hint?
Tank you very much...
greetings - develop.acb
KalyanChakri
unread,
Jul 26, 2012, 5:24:08 AM7/26/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to google-we...@googlegroups.com, devel...@googlemail.com
1. Implement DoubleClickHandler in CellTable extended class.
2. Add the following line in the code addDomHandler(this, DoubleClickEvent.getType());