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