Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on Phonegap app for Android and iOS. Most of the stuff works pretty well but I'm experiencing a problem with <select> tag. It's enhanced with jQuery mobile and on that version of Android when the appropriate div is clicked / tapped the options are not showing up. They show up when I do two clicks / taps:

  1. on a div containing <select>
  2. on a area above the div

In that scenario options show up and when selected change event is fired and code bind to it is executed.

I found these two android issues: http://code.google.com/p/android/issues/detail?id=10280 and http://code.google.com/p/android/issues/detail?id=6721

I have tried the workarounds mentioned there but they don't change anything. I still have to do two clicks but it's not the behavior I'm after. I only need one click.

Issue exists only on Android 2.3.3 and I think on older versions too. On iOS and newer Androids everything works perfectly fine.

I'm struggling with this issue whole day and tried everything.

Any help, tips would be heavily appreciated. Thanks.

share|improve this question
hi,were u able to get around this issue? – ghostCoder Feb 14 '12 at 3:16
I'm checking if it's an android platform and if yes, I'm using different template without <select> in it. I'm building drop down myself and I also have to handle click by myself. It's basically a div with ul list showing / hiding when certain element is clicked – Marcin Zbijowski Feb 14 '12 at 15:30
update: on android 3.2.x there is a problem with the solution from my previous comment, user has to click somewhere outside the selected item to get it working – Marcin Zbijowski Feb 16 '12 at 15:28
you should add data-native-menu="false" – Coder Decoder Encoder Jan 11 at 12:34

3 Answers

Did You try adding data-native-menu="false" attribute to the select menu.

Example:

 <select name="gender" id="gender" data-theme="b" data-native-menu="false" >
                                        <option value="">Please specify ...</option>
                                        <option value="option1">Male</option>
                                        <option value="option2">Female</option>
                                        <option value="option3">Undisclosed</option>
                                    </select>
share|improve this answer

I had the same problem, i realized the problem was because i had used data-position="fixed" property for the heading of the page which contained the select element. when i removed data-position="fixed" from my heading, heading was not fixed surely, but got rid of this annoying problem of selects not being 'clicked'. hope this helps!

share|improve this answer

Having the same problem with android 2.3 and a JavaScript generated select box, my solution for this was using jQuery to focus the element once it was rendered and every time it was rendered again (even if using $.SELECT.show()).

After doing $("#element").focus() the select box behaves normally again, its both clickable and updates after selecting a new option.

share|improve this answer
will try that when client asks for an update of the app :) thanks for sharing your solution – Marcin Zbijowski Jun 14 at 13:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.