messages.dialogs.moveConfirm.titleString

Defines the title text for the move confirmation dialog in the FileManager. This message appears in the dialog header when users perform a drag-and-drop operation that requires choosing between move or copy actions. 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: {
                moveConfirm: {
                    title: "Confirm Move"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>