Announcement

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

    MuiltpleApperance property on selectItem is not working

    Here is the standalone test case where we have set and use the property. The behavior is same as picklist

    isc.DynamicForm.create({
    width: 500,
    fields: [{
    name: "shipTo", title: "Ship to", type: "select",multiple: true, multipleApperance: "grid",
    hint: "<nobr>Overnight shipping available for countries in bold</nobr>",
    valueMap: {
    "US" : "<b>United States</b>",
    "CH" : "China",
    "JA" : "<b>Japan</b>",
    "IN" : "India",
    "GM" : "Germany",
    "FR" : "France",
    "IT" : "Italy",
    "RS" : "Russia",
    "BR" : "<b>Brazil</b>",
    "CA" : "Canada",
    "MX" : "Mexico",
    "SP" : "Spain"
    }

    }]
    });

    #2
    Can you lay out exactly what problem you are seeing with this code? It appears to be working for us.
    Also which build are you seeing the problem against?

    Comment


      #3
      Sorry, we made a typo in multipleAppearance spelling in given code, it's working now.

      Comment

      Working...
      X