Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

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.

Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

Click event to open popup creates click on popup when opened

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

Illya Stepanov
Posts: 0
Joined: Mon Mar 18, 2013 8:48 am

Click event to open popup creates click on popup when opened

On what version of Android you are targeting?

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

Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

Click event to open popup creates click on popup when opened

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

Illya Stepanov
Posts: 0
Joined: Mon Mar 18, 2013 8:48 am

Click event to open popup creates click on popup when opened

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

Evgene Karachevtsev
Posts: 12
Joined: Mon Apr 28, 2014 1:12 pm

Click event to open popup creates click on popup when opened

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.

Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

Click event to open popup creates click on popup when opened

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

Aeneas McBurney
Posts: 0
Joined: Mon Jun 16, 2014 7:49 am

Click event to open popup creates click on popup when opened

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

Return to “Issues”