javagwtonclickdouble-clickondoubleclick

GWT - Handle both double click and single click on the same element


I've a custom widget with a onClick handler. The problem is when user double clicks on the element, a duplicate call is also triggered for the second click. Was trying to avoid it by using onDoubleClick handler, on double click the call does go into this handler but it goes only after executing onClick. So still the duplicate call is happening.

Have seen solutions of having a timer in Javascript to avoid duplicate requests on double. Is it possible to have a similar thing in GWT?

Or is there any other better way of avoiding the duplicate request on double click for elements in GWT?


Solution

  • How to prevent DoubleSubmit in a GWT application?

    The answer given in the above link would help in handling double click for a button.

    But if its a custom widget and .setEnabled(false) doesn't work we can have a static boolean variable, condition check if its false then allow and set it to true when clicked once then set it back to false on success. In case of double click the boolean value will be true and the if condition would fail.