Hello,
I'm using SmartClient_v91p_2014-03-23_PowerEdition and when I have ComboBox that is connected to a data set and I'm filtering fields in the picker list and one of them is date picker the ComboBox picker list disappear and the filter is not selected.
You can reproduce it with this code:
is that a bug or I'm doing something wrong?
I'm using SmartClient_v91p_2014-03-23_PowerEdition and when I have ComboBox that is connected to a data set and I'm filtering fields in the picker list and one of them is date picker the ComboBox picker list disappear and the filter is not selected.
You can reproduce it with this code:
Code:
isc.DynamicForm.create({ ID:"exampleForm", width:300, fields: [ { name:"itemID", type:"comboBox", width:240, title:"Item", optionDataSource:"supplyItem", valueField:"SKU", displayField:"itemName", pickListWidth:450, pickListProperties: { showFilterEditor: true }, pickListFields: [ { name: "itemName" }, { name: "units" }, { name: "nextShipment", filterEditorType: "DateItem" }, { name: "unitCost" } ] } ] });
Comment