messages.dialogs.moveConfirm.contentString
Defines the content text for the move confirmation dialog in the FileManager. This message appears as the main body text that asks users whether they want to move or copy the selected files and folders. 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: {
content: "<p style='text-align: center;'>Do you want to move or copy?</p>"
}
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article