记录事件不删除。 J表Jquery

Event for records not delete. Jtable Jquery

我正在 jquery jtable 中删除。它检查约束和 returns 错误。当我按下该错误的关闭按钮时,deleteDialog 再次出现。我不希望对话框重新出现,而是希望关闭对话框并加载 jtable。 jtable 中是否有 recordsNotDeleted 事件?请帮忙

关闭标题为“注意”的对话框时,我想要此对话框加上标题为“你确定吗?”的对话框即将关闭

这对我有用。

 $("button[role='button']:contains('Close')").click(function () {
        $('.ui-dialog').filter(function () {
            return $(this).css("display") === "block";
        }).find('.ui-dialog-content').dialog('close');
    });

参考:Close dialog on click (anywhere)