Click event to open popup creates click on popup when opened
Yes it's an issue with certain devices but only happens with appery apps not others. It's still something that needs to be looked at.
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Yes it's an issue with certain devices but only happens with appery apps not others. It's still something that needs to be looked at.
Is this still being looked at? I will be unable to release my app on latest Android versions s if this isn't resolved.
On what version of Android you are targeting?
Unfortunately, we don't have such device for testing at the moment.
The android version I have and this is happening on is Android v5.0. I have also tried on a friends phone who is on v4.4.2 and its the same problem. I'm surprised no one else has bought this issue up before.
Thanks,
Aeneas
We will test it on Android 5.0 and 4.4.2 -- and we'll post an update here.
Great thanks!
Hello Aeneas,
I tested your app on Gigabyte Roma and HTC One both with Android 4.4.2 and your app works correctly on both of them.
Can you please try on Android 5.0 lollipop which is what my phone has?
This is my issue
I added the following to a js script and its sort of working. It only works to disable a 2nd click event but the component is still selected which is annoying when its a text input as it brings up the keyboard.
last_click_time = new Date().getTime();
document.addEventListener('click', function (e) {
click_time = e.timeStamp;
if (click_time && (click_time - last_click_time) < 1000) {
e.stopImmediatePropagation();
e.preventDefault();
return false;
}
last_click_time = click_time;
}, true);