Greetings,
Is there a way to disable specific items in a pulldown select list? Say for example, having China listed, but not selectable? I'm unable to find a way to do it.
Thanks
Is there a way to disable specific items in a pulldown select list? Say for example, having China listed, but not selectable? I'm unable to find a way to do it.
Thanks
Code:
isc.DynamicForm.create({ width: 500,ID:"myForm", fields: [{ name: "shipTo", title: "Ship to", type: "select", valueMap: { "US" : "<b>United States</b>", "CH" : "China", "SP" : "Spain" }, imageURLPrefix:"flags/16/", imageURLSuffix:".png", valueIcons: { "US" : "US", "CH" : "CH", "SP" : "SP" } }] });
Comment