Hi,
if you disable the "picker" icon with option showPickerIcon, the item will not be rendered

SC Version 11.0p_2016-07-08
if you disable the "picker" icon with option showPickerIcon, the item will not be rendered
Code:
isc.DynamicForm.create({
fields: [{
name: "shipTo", title: "Ship to", type: "select", showPickerIcon:false,
valueMap: {
"US" : "<b>United States</b>",
"CH" : "China",
}
}]
});
SC Version 11.0p_2016-07-08
Comment