messages.dialogs.renamePrompt.okTextString
Defines the text for the primary action button in the rename prompt dialog. This message appears on the button that executes the rename operation when users have entered a new name for the selected file or folder. 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: {
dialogs: {
renamePrompt: {
okText: "Rename"
}
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article