New to Kendo UI for jQueryStart a free 30-day trial

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.

<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>

Defines the text for the cancel button in the delete confirmation dialog. This message appears on the button that dismisses the dialog without deleting any files or folders, allowing users to abort the deletion operation. It provides localization support for different languages and allows customization of the user interface text.

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

    $("#fileManager").kendoFileManager({
        messages: {
            dialogs: {
                deleteConfirm: {
                    cancel: "Cancel"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>

Defines the text for the close button in the delete confirmation dialog. This message appears on the button or link that dismisses the dialog without performing the deletion, effectively canceling the destructive operation. It provides localization support for different languages and allows customization of the user interface text.

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

    $("#fileManager").kendoFileManager({
        messages: {
            dialogs: {
                deleteConfirm: {
                    close: "close"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>

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.

<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>

Defines the text for the primary action button in the delete confirmation dialog. This message appears on the button that executes the deletion when users confirm they want to permanently remove the selected files and folders. It provides localization support for different languages and allows customization of the user interface text.

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

    $("#fileManager").kendoFileManager({
        messages: {
            dialogs: {
                deleteConfirm: {
                    okText: "Delete"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>

Defines the title text for the delete confirmation dialog in the FileManager. This message appears in the dialog header when users attempt to delete selected files or folders, providing a clear warning about the destructive action. It provides localization support for different languages and allows customization of the user interface text.

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

    $("#fileManager").kendoFileManager({
        messages: {
            dialogs: {
                deleteConfirm: {
                    title: "Confirm Deletion"
                }
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>