Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

ComboBox picker list disappear when trying to select date with the date picker

$
0
0
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:

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" }
            ]
        }
    ]
});

is that a bug or I'm doing something wrong?

Viewing all articles
Browse latest Browse all 4756

Trending Articles