messages.dialogs.deleteConfirm.contentString
Defines the content text for the delete confirmation dialog in the FileManager. This message appears as the main body text that asks users to confirm the permanent deletion of 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: {
deleteConfirm: {
content: "<p style='text-align: center;'>Are you sure you want to delete the selected file(s)?</p>"
}
}
},
dataSource: {
transport: {
read: {
method: "POST",
url: baseUrl + "Read"
}
}
}
});
</script>
In this article