【发布时间】:2021-03-07 16:41:35
【问题描述】:
我正在尝试用 sweetalert jquery 替换 jqgrid 默认删除对话框弹出窗口。当我使用下面的代码删除按钮时,它工作正常,但它仍然显示默认的 jqgrid 删除确认方法。
知道如何正确调用 sweetalert 确认对话框吗? 谢谢
url: editUrl,
closeOnEscape: true,
closeAfterDelete: true,
recreateForm: true,
beforeShowForm: function ($form) {
swal({
title: "Are you sure?",
text: "You will not be able to recover this imaginary file!",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "Yes, delete it!",
closeOnConfirm: false
}, function () {
swal("Deleted!", "Your imaginary file has been deleted.", "success");
});
},
【问题讨论】:
标签: dialog jqgrid sweetalert