messages.dialogs.deleteConfirmObject

Defines the localization messages for the delete confirmation dialog in the FileManager. This object contains all text messages displayed when users attempt to delete files or folders, ensuring they confirm the destructive action before proceeding. It provides comprehensive localization support for the delete functionality.

Example

<div id="fileManager"></div>
<script>
    var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";

    $("#fileManager").kendoFileManager({
        messages: {
            dialogs: {
                deleteConfirm: {
                    title: "Confirm",
                    content: "<p style='text-align: center;'>Are you sure you want to delete the selected file(s)?</p>",
                    okText: "Delete",
                    cancel: "Cancel"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>