upload.clearFunction
Fires when the files are cleared by clicking on the Clear button. Upload Events.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
$("#fileManager").kendoFileManager({
upload: {
clear: function(e) {
console.log("Upload list cleared");
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article