Check documentation for the latest version of dhtmlxSuite onSelect DHTMLX Docs

onSelect

fires when selection in the DataSelector is changed

void onSelect(string|number id,mixed value);
idstring|numberthe id of the selected item
valuemixedthe value of the selected item

Example

myDataSelector.attachEvent("onSelect", function(id, value){
    // your code here
});

Back to top