Hello all,
having an ItemClickListener on a Grid works fine most of the time.
If one tries to detect a double click, this is what happens:
3 events are being sent. The first two have
event.isDoubleClick() == false
and a
3rd
one occurs which has
event.isDoubleClick() == true
However, when a cell has something else other than text rendered in it (ie. an image or even Html with the respective renderer) and the user double-clicks on the image or the rendered html only the first two events occur - meaning the 3rd one that “sends” the double click is never being sent to the server.
If the user clicks on text or blank space everything works as it should.
Anyone has any insights on this?
Regards,
George