Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    12.0p on iPad: ComboBoxItem editorExit not working on mobile

    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:
    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>"
            }
        },
        ]
    });

    #2
    We're looking into this, but your issue with ComboBoxItem is related to special treatment we give that item's focus on touch platforms, so we're still sorting out how to ensure it's consistent with other formItems and desktop.

    Comment


      #3
      We've addressed this in SC 12.0p and newer releases, effective with the nightly builds dated 2018-10-17.

      Comment

      Working...
      X