Check documentation for the latest version of dhtmlxSuite onSelect DHTMLX Docs

onSelect

fires when a cell is selected

void onSelect(string|number id);
idstring|numberthe cell id

Example

myCarousel.attachEvent("onSelect", function(id){
    // your code 
});

Back to top