messages.dialogs.renamePromptObject

Defines the localization messages for the rename prompt dialog in the FileManager. This object contains all text messages displayed when users attempt to rename files or folders, including the dialog title, input prompt, and action buttons. It provides comprehensive localization support for the rename functionality.

Example

<div id="fileManager"></div>
<script>
    var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";

    $("#fileManager").kendoFileManager({
        messages: {
            dialogs: {
                renamePrompt: {
                    title: "Prompt",
                    content: "<p style='text-align: center;'>Enter new name for the file.</p>",
                    okText: "Rename",
                    cancel: "Cancel"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>