If I add this item:
to this demo:
https://www.smartclient.com/smartcli...=specialValues
then I'm seeing that neither change nor changed is called when I select the "Select All" option. The callbacks are triggered when the "Select None" option is selected.
Also, if I uncomment the separateSpecialValues line, then I am seeing the keys of the specialValues object appear in the list instead of the values.
Thanks,
Amos.
Code:
{
name: "multipleSelect2", title: "Select all items2", editorType: "SelectItem",
valueMap:{"A":"A","B":"B"},
multiple: true,
specialValues: { "**emptyValue**": "Select None", "**selectAllValues**": "Select All" },
//separateSpecialValues: true,
changed: function(form,item,value){
console.log("changed:",value);
},
change: function(form,item,value){
console.log("change:",value);
}
}
https://www.smartclient.com/smartcli...=specialValues
then I'm seeing that neither change nor changed is called when I select the "Select All" option. The callbacks are triggered when the "Select None" option is selected.
Also, if I uncomment the separateSpecialValues line, then I am seeing the keys of the specialValues object appear in the list instead of the values.
Thanks,
Amos.
Comment