Reputation: 1
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
Upvotes: 0
Views: 1402
Reputation: 365
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.
Upvotes: 1