You have to pass "dblclick" to the AbstractCell constructor, or "dblclick" 
events won't be routed to your cell.

new AbstractCell<Node>("dblclick") { ... }

You can also use DoubleClickEvent.getType().getName() instead of the 
"dblclick" constant if you prefer.

And of course, event.getType() returns "dblclick", so your 
Integer.parseInt() fails. Either do a String comparison with "dblclick", or 
use Event.getTypeInt(event.getType()) to turn it into something that can be 
compared with Event.ONDBLCLICK.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to