0

Hi My cordova app contains a simple select dropdown Which contain options as 1,2,3,4. When I open My app in iPad Full view and click on Select dropdown, its opening and am able to select an option in it . But when I open My app in iOS9 split view(33% or 50%) and click on this "Select" dropdown, select dropdown is taking total split screen width and height and its not responding.Any help would be appreciated. I am not using any external plugins like jquery mobile etc... Thanks In advance

9
  • 2
    You need to post some more information such as what framework is your app using (e.g. Ionic, jQuery Mobile, Meteor), HTML/JS showing how you define the <select>. Also maybe a screenshot illustrating what "taking total split screen" means. Commented Oct 4, 2015 at 8:03
  • First Thanks for your fast response.I created cordova application, added iOS platform and my index.html contains below select dropdown code. <select id="cityList"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> </select> Commented Oct 4, 2015 at 8:19
  • Sorry I am not able to add image or screen shot Commented Oct 4, 2015 at 8:19
  • In the question please, and remember to format your question properly ;) Commented Oct 4, 2015 at 8:21
  • @DaveAlden could you please check the attachment I have added in the below link. issues.apache.org/jira/browse/CB-9689 Commented Oct 5, 2015 at 7:02

1 Answer 1

1

I've faced similar issue while trying to show select dropdown in a popup. Select dropdown was visible but it was not responding to click events. The page height was less than what the popup was covering. After adding min-height to body tag, "select" was functional again. Below is sample css that I'm using.

body{
 min-height:300px;
}
.popup-wrapper{
 position:absolute;
 top:40%;
}

Hope this helps.

answered Nov 25, 2015 at 16:46
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.