uploadObject
Configures the composite Upload widget of the FileManager. Accepts the same options as the kendoUpload widget.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
$("#fileManager").kendoFileManager({
upload: {
multiple: true,
showFileList: true,
async: {
saveUrl: baseUrl + "Upload",
removeUrl: baseUrl + "Remove"
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article