toolbar.clickFunction
Fires when the user clicks a command button. Toolbar Events.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
$("#fileManager").kendoFileManager({
toolbar: {
click: function(e) {
console.log("Toolbar button clicked: " + e.id);
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article