messages.toolbar.detailsUncheckedString
Defines the text for the details toggle button when the details pane is hidden. This message appears as an accessibility label or tooltip text when the details pane is currently hidden, indicating the unchecked state of the toggle. 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: {
detailsUnchecked: "Off"
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article