Hi Isomorphic,
I have a ComboBoxItem in my application that autocompletes the zipcode for a preselected country.
On exit, the city is written into the city field. This does not work on mobile, as it seems that editorExit does not work there.
Please open this sample in latest 12.0p:
I have a ComboBoxItem in my application that autocompletes the zipcode for a preselected country.
On exit, the city is written into the city field. This does not work on mobile, as it seems that editorExit does not work there.
Please open this sample in latest 12.0p:
Code:
isc.DynamicForm.create({ ID: "form2", width: 620, colWidths: [190, "*"], isGroup: true, groupTitle: "Select / Combo Controls", fields : [ { name: "itemName", title: "Item Name", editorType: "ComboBoxItem", optionDataSource: "supplyItem", hint: "<nobr>A databound combobox</nobr>", editorExit: function(form, item, value) { isc.say("Popup not shown on Safari on iPad when switching to selectItem2.") } }, { name: "selectItem2", title: "Select", hint: "<nobr>A select with styled entries</nobr>", editorType: "SelectItem", valueMap : { "red" : "<span style='color:#FF0000;'>Red</span>", "green" : "<span style='color:#00FF00;'>Green</span>", "blue" : "<span style='color:#0000FF;'>Blue</span>" } }, ] });
Comment