I’m using the jQuery UI Date Picker on mobile web and testing in Android 2.3 device. It’s currently working well (with the default out of the box behaviors), but I am having one distinct issue. When the date picker opens, any additional input fields below the dp will also be selected when a date is clicked, highlighting the field on top of the date picker. How do I fix this issue? Is it a focus thing? I can post code if it’s needed, but again, this is all default jQuery ui. Also, this is not an issue in iOS 4 or 5.
Share
I had the same issue. I could not find which event had to be stopped from propagating. Did you find a solution?
My current workaround is:
– deactivate inputs, selects etc when you open the dialog
– reactivate them when you close the dialog.
It is working fine when you do this (but it should not be necessary).