messages.dialogs.renamePrompt.contentString

Defines the content text for the rename prompt dialog in the FileManager. This message appears as instructional text that prompts users to enter 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: {
                    content: "<p style='text-align: center;'>Enter new name for the file.</p>"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>