dialogs.moveConfirmObject
Configures the Move (when drag/drop action is performed) dialog - kendoConfirm
Example
<div id="fileManager"></div>
<script>
    var baseUrl = "https://demos.telerik.com/service/v2/core/filemanager/";
    $("#fileManager").kendoFileManager({
        dialogs: {
            moveConfirm: {
                // kendoConfirm options
            }
        },
        dataSource: {
            transport: {
                read: {
                    method: "POST",
                    url: baseUrl + "Read"
                }
            }
        }
    });
</script>In this article