toolbar.items.showTextString
(default: "both")
Specifies where the text 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", showText: "toolbar" },
{ name: "upload", showText: "both" }
]
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article