toolbar.items.showIconString
(default: "both")
Specifies where the button icon will be displayed. Possible values are: "toolbar", "overflow" or "both" (default).
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
$("#fileManager").kendoFileManager({
toolbar: {
items: [
{ name: "createFolder", showIcon: "toolbar" },
{ name: "upload", showIcon: "both" }
]
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article