width Number | String
Configures the width of the FileManager.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/kendo-ui/service/filemanager/";
$("#fileManager").kendoFileManager({
width: 500,
dataSource: {
transport: {
read: {
type: "post",
url: baseUrl + "Read"
}
}
}
});
</script>