-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
Simple html code with cordova and webview+ not showing select popup properly on my samsung tablet with android version 4.1.2 . But it has no problem on my samsung mobile(Grand I9082) with android version 4.2.2
Issues on android version 4.2.2, samsung tablet :
a) Single select - not triggering android native select popup but actually showing options with no background below the html select element
b) Multiple select - crashing app on clicking mutiple select.
//code for single select
<div class="input-label">
<select>
<option value="cell">Cell</option>
<option value="phone">Phone</option>
<option value="office">Office</option>
<option value="fax">Fax</option>
<option value="home">Home</option>
</select>
</div>
//code for multiple select
<div class="input-label">
<select multiple="multiple">
<option value="cell">Cell</option>
<option value="phone">Phone</option>
<option value="office">Office</option>
<option value="fax">Fax</option>
<option value="home">Home</option>
</select>
</div>
Note: see top left of images for select input.
I have added two images(after_webview_plus & before_webview_plus) demonstrating issue with select input.
//after webview plus added
//before webview plus added
Metadata
Metadata
Assignees
Labels
No labels

