messages.dialogs.moveConfirm.closeString

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