Check documentation for the latest version of dhtmlxSuite onSelect DHTMLX Docs

onSelect

fires when selection in the FileSelector is changed

void onSelect(string|number id);
idstring|numberid of the selected item

Example

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

Back to top