i have a simple form with a select menu:
<div data-role="page">
<div data-role="popup" id="popupAddItem">
<select name="select-choice" data-native-menu="false">
<option>Select an option</option>
<option value="a">A</option>
</select>
</div>
<a href="#popupAddItem" data-rel="popup" data-role="button" data-icon="info">Add Item</a>
</div>
i added data-native-menu="false"
so that the drop down will look nicer, but it seems not to work if the form is inside a popup.
so if i remove data-role="popup"
then the custom select element seems to work, else not.
Is this a bug, or am i doing something wrong? see jsfiddle