Double click events in Mobile Browsers

Hi Everyone,

I’m new to XOJO forums, hope you could help me out here.
I have a small issue with the web app I have being building.
I have built a container control. On it I have put a web rectangle and used its Double click event to run certain methods.
Using a PC browser this all works fine, but in a Mobile Browser(Android) the double click event would not work although the events of native controls such as buttons, pop up menus works perfectly in the mobile browser.

Any idea why, and how to make the double click events work in a mobile browser?

Thanks i Advance.

Mobile browsers simply do not enable double click. It does not fire at all even in JavaScript.

And double click is extremely unusual in mobile UI.

You may want to refactor your UI to use a single click on mobile, or use long press. See https://forum.xojo.com/8931-call-contextualmenu-on-touch-devices/0

Thank you Michel.
I may have to display a separate UI for mobile devices.

[quote=267426:@Dinuka Perera]Thank you Michel.
I may have to display a separate UI for mobile devices.[/quote]

Indeed.