SmartClient Version: SNAPSHOT_v11.1d_2017-03-06/Enterprise Development Only (built 2017-03-06)
Chrome on OSX
Hello, when I set showPickerIcon:false on a ComboBoxItem, it renders without a border at all. I wonder if it's intended behavior or not.
Test case:
screenshot:
Chrome on OSX
Hello, when I set showPickerIcon:false on a ComboBoxItem, it renders without a border at all. I wonder if it's intended behavior or not.
Test case:
Code:
isc.DynamicForm.create({
width: 500,
numCols: 4,
isGroup: true,
groupTitle: "List - ComboBox",
fields : [{
name: "bugStatus", title: "Bug Status", showPickerIcon:false,
editorType: "ComboBoxItem",
valueMap : {
"new" : "New",
"active" : "Active",
"revisit" : "Revisit",
"fixed" : "Fixed",
"delivered" : "Delivered",
"resolved" : "Resolved",
"reopened" : "Reopened"
}
},{
name: "itemName", title: "Item Name", editorType: "ComboBoxItem",
optionDataSource: "supplyItem", pickListWidth: 250
}]
});
Comment