fires when the selection is changed
sel_arr | array | an array of items, the selected state of which is changed |
myDataView.attachEvent("onSelectChange", function (sel_arr){
// your code here
});
the event also fires for multi-select actions
Back to top