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