There is something in core of version 10.0d that makes regular html checkbox to uncheck itself on check on Android Browser
Every other browser on Android does not do that - just the native browser
However if you touch the label for checkbox - then it works fine but not if you touch checkbox itself
Touch and hold checks/unchecks it properly but not a quick touch
This was not a problem in 9.1
Tested on Samsung Galaxy S3 Phone and Lenovo S6000 Tablet
Here is a sample code that demonstrates the problem
Every other browser on Android does not do that - just the native browser
However if you touch the label for checkbox - then it works fine but not if you touch checkbox itself
Touch and hold checks/unchecks it properly but not a quick touch
This was not a problem in 9.1
Tested on Samsung Galaxy S3 Phone and Lenovo S6000 Tablet
Here is a sample code that demonstrates the problem
Code:
<!DOCTYPE HTML> <html><head> <script src=smartclientSDK/isomorphic/system/modules/ISC_Core.js></script> </head> <body><label for="chk">Checkbox</label><input id="chk" type="checkbox"></body></html>
Comment