How can we enable a native-looking popup selector menu with a ComboBox in WiseJ?
A simple HTML list like this
<select name=”selproject” id=”selproject”>
<option value=”0″>All Projects</option>
<option value=”7″ selected=””>FamilyTime</option>
<option value=”8″>Fixity (Android)</option>
….
</select>
Presents this selector UI in Android. It’s full screen, scrollable, and easy to select an item with your thumb.
A WiseJ combobox presents the item selection in classic Winforms style (dropped-down from the ComboBox). It would be great to have the option for both.
Mostly I just want the native selector UI displayed, because it is ideal for input on mobile devices. If the native display is impossible, something that emulates or imitates it would be nice. What would you recommend?
It’s possible to create plain ComboBox control. But it cannot be a replacement for the Wisej.Web.ComboBox, there are too many features that the plain html select doesn’t support. The Wisej.Web.ComboBox can be edited, styles, can display any HTML in the combo and drop down, can handle all the dropdown, closeup events, update the list while it’s displayed, have variable height elemenets, etc.
Please login first to submit.