messages.dialogs.moveConfirm.okTextString
Defines the text for the primary action button in the move confirmation dialog. This message appears on the button that performs the copy action when users choose to duplicate files and folders instead of moving them. 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: {
okText: "Copy"
}
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article