messages.toolbar.detailsString
Defines the text for the details toggle button in the toolbar. This message appears as a tooltip and button label for the toggle that switches the details pane visibility in the FileManager. It provides localization support for different languages and allows customization of the user interface text.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
$("#fileManager").kendoFileManager({
messages: {
toolbar: {
details: "View Details"
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article