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

SelectItem optionOperationId showFilterEditor

$
0
0
The optionOperationId is not maintained when filterering using the filtereditor from the picklist of a selectItem with pickListProperties showFilterEditor:true.
I've included an example to see this behaviour.

Using feature explorer: http://www.smartclient.com/docs/10.0/a/system/reference/SmartClient_Explorer.html#formDependentSelectsDatabound

Paste this code:
Code:

isc.DynamicForm.create({
    top: 25,
    width: 500,
    numCols: 4,
    autoDraw: true,
    fields: [
        {name: "itemName", title:"Item", editorType: "select",
        optionDataSource:"supplyItem",
        pickListProperties:{
                showFilterEditor:true
        },
        optionOperationId :"selectOptions"

        }
    ]
});


Viewing all articles
Browse latest Browse all 4756

Trending Articles