messages.dialogs.renamePrompt.cancelString

Defines the text for the cancel button in the rename prompt dialog. This message appears on the button that dismisses the dialog without renaming the file or folder, allowing users to abort the rename 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: {
                    cancel: "Cancel"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>