Hi Isomorphic,
modifing this sample with this code
I noticed strange behavior:
Pavo
modifing this sample with this code
Code:
isc.DynamicForm.create({
ID:"testForm",
width: 500,
fields : [
{
name: "filteredCombo", title: "Select Item", editorType: "ComboBoxItem",
minimumSearchLength: 3,
addUnknownValues:false,
optionDataSource: "supplyItem",
displayField:"itemName", valueField:"SKU",
filterFields:["SKU", "itemName"],
pickListPlacement: "fillScreen",
pickListWidth:300,
pickListFields:[
{name:"SKU"},
{name:"itemName"}
]
}
]
});
- After clicking on CBI all records are fetched although minimumSearchLength is 3
- After 1st step, if I type >=3 letters, message "Enter a longer search string to search" is still there (no fetch at all).
Pavo
Comment