During my testing of the app on a Galaxy Tab with Android 2.2, I encountered an issue within the WebView component. The problem arises when I have a local HTML page generated dynamically and it contains a SELECT element like this:
<select class='dd'>
<option value='1'>1</option>
<option value='2' selected=selected>2</option>
<option value='3'>3</option>
</select>
This situation leads to the following issues:
- Although the dropdown menu is visible, it cannot be selected unless you zoom in the WebView.
- Even if you manage to select an option from the dropdown, the initial option value remains displayed (even after the
onchange
event triggers).