Page 2 of 4

Click event to open popup creates click on popup when opened

Posted: Sat Mar 28, 2015 11:19 pm
by Aeneas McBurney

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.


Click event to open popup creates click on popup when opened

Posted: Tue Mar 31, 2015 6:11 pm
by Aeneas McBurney

Is this still being looked at? I will be unable to release my app on latest Android versions s if this isn't resolved.


Click event to open popup creates click on popup when opened

Posted: Tue Mar 31, 2015 6:50 pm
by Illya Stepanov

On what version of Android you are targeting?

Unfortunately, we don't have such device for testing at the moment.


Click event to open popup creates click on popup when opened

Posted: Tue Mar 31, 2015 6:53 pm
by Aeneas McBurney

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


Click event to open popup creates click on popup when opened

Posted: Tue Mar 31, 2015 7:05 pm
by Illya Stepanov

We will test it on Android 5.0 and 4.4.2 -- and we'll post an update here.


Click event to open popup creates click on popup when opened

Posted: Tue Mar 31, 2015 7:23 pm
by Aeneas McBurney

Great thanks!


Click event to open popup creates click on popup when opened

Posted: Wed Apr 01, 2015 9:04 pm
by Evgene Karachevtsev

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.


Click event to open popup creates click on popup when opened

Posted: Wed Apr 01, 2015 9:07 pm
by Aeneas McBurney

Can you please try on Android 5.0 lollipop which is what my phone has?


Click event to open popup creates click on popup when opened

Posted: Wed Apr 01, 2015 9:10 pm
by Aeneas McBurney

Click event to open popup creates click on popup when opened

Posted: Wed Apr 01, 2015 9:38 pm
by Aeneas McBurney

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);