Hi all,
I have a question. Is possible to filter the data that is shown in a ComboBox or PickList like the following code in the SC reference?
I don't understand how to do that, I mean, using AdvancedCriteria. Someone has an example?
Thanks in advance.
I have a question. Is possible to filter the data that is shown in a ComboBox or PickList like the following code in the SC reference?
I don't understand how to do that, I mean, using AdvancedCriteria. Someone has an example?
Code:
isc.DynamicForm.create({
width: 500,
numCols: 4,
fields : [{
name: "bugStatus", title: "Bug Status",
editorType: "comboBox",
valueMap : {
"new" : "New",
"active" : "Active",
"revisit" : "Revisit",
"fixed" : "Fixed",
"delivered" : "Delivered",
"resolved" : "Resolved",
"reopened" : "Reopened"
}
},{
name: "itemName", title: "Item Name", editorType: "comboBox",
optionDataSource: "supplyItem", pickListWidth: 250
}]
});
Thanks in advance.
Comment