messages.toolbar.renameString
Defines the text for the rename button in the toolbar. This message appears as a tooltip and button label for the rename action that allows users to rename selected files or folders 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: {
rename: "Rename"
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article