messages.dialogs.renamePrompt.closeString

Defines the text for the close button in the rename prompt dialog. This message appears on the button or link that dismisses the dialog without performing the rename action, effectively canceling the operation. 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: {
                    close: "close"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>