Hi,
I'm trying to use a ComboBoxItem with the showFilterEditor property, but I'm getting some unexpected behaviour ...
Here's the sample code (runs off the ISC web site "ComboBox & Family -> DropDown Grid" test bed):
The problem is that when the user tries to click inside the "Filter Editor" the combo box closes.
This works fine when using a regular SelectItem ... We need the combined behaviour ...
Any ideas?
Thanks,
I'm trying to use a ComboBoxItem with the showFilterEditor property, but I'm getting some unexpected behaviour ...
Here's the sample code (runs off the ISC web site "ComboBox & Family -> DropDown Grid" test bed):
Code:
isc.DynamicForm.create({
ID:"exampleForm",
width:300,
fields: [
{
name:"itemID",
editorType:"ComboBoxItem",
width:240,
title:"Item",
optionDataSource:"supplyItem",
valueField:"SKU",
displayField:"itemName",
pickListProperties : { showFilterEditor : true },
pickListWidth:450,
pickListFields: [
{ name: "itemName" },
{ name: "units" },
{ name: "unitCost" }
]
}
]
});
This works fine when using a regular SelectItem ... We need the combined behaviour ...
Any ideas?
Thanks,
Comment