messages.dialogs.moveConfirmObject
Defines the localization messages for the move confirmation dialog in the FileManager. This object contains all text messages displayed when users drag and drop files or folders, providing options to move or copy the selected items. It provides comprehensive localization support for the move/copy functionality.
Example
<div id="fileManager"></div>
<script>
var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
$("#fileManager").kendoFileManager({
messages: {
dialogs: {
moveConfirm: {
title: "Confirm",
content: "<p style='text-align: center;'>Do you want to move or copy?</p>",
okText: "Copy",
cancel: "Move"
}
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article