Check documentation for the latest version of dhtmlxSuite onToolbarClick DHTMLX Docs

onToolbarClick

fires on clicking a toolbar item

void onToolbarClick(string name);
namestringthe name of the clicked item

Example

myEditor.attachEvent("onToolbarClick", function(name){
    // your code here
});

Back to top