Check documentation for the latest version of dhtmlxSuite onSelectChange DHTMLX Docs

onSelectChange

fires when the selection is changed

void onSelectChange(array sel_arr);
sel_arrarrayan array of items, the selected state of which is changed

Example

myList.attachEvent("onSelectChange", function (sel_arr){
   // your code here
});

Details

the event also fires for multi-select actions

Back to top