How To Programmatically Open a Combobox (spinner mode)
1) add combo and assign a unique id in the properties
2) add custom javascript function that will select the combo and fire its handlers
//jquery snippet, selects a combo with combobox1 as its name and then fires its click handler(s)
$('[name=combobox1]').trigger('click');
I tested this approach in the Simulator and on an iphone5/ios7.
Here is a little example project that demonstrates this technique. The project is attached at the bottom. See attachment design-note1.png
Example project See attachment open-spinner.zip
Attachments:
You must be
logged in to view attached files.