execute
Fired when a command is executed.
Event Data
e.sender kendo.ui.FileManager
The widget instance which fired the event.
e.command String
The name of the command.
e.options Object
The options of the command.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
$("#fileManager").kendoFileManager({
execute: function(e) {
console.log("Executed command: " + e.command);
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article