在jqgrid中进行任何其他操作时,是否可以使确认框与jqgrid中的delete相同。我们需要在类或html中进行哪些更改,以使外观与删除确认框相同。
答案 0 :(得分:0)
您可以使用方法$.jgrid.info_dialog
。代码可能如下
$.jgrid.info_dialog.call($grid[0],
"Confirmation", // dialog title
"Are <b>you</b> sure?", // any HTML code of the content of the dialog
"",
{
buttons: [
{
id: "my_yes",
text: "Yes",
onClick: function (e, $dlg) {
alert("Yes is clicked");
}
},
{
id: "my_no",
text: "No",
onClick: function (e, $dlg) {
alert("No is clicked");
}
}
]
});
其中$grid
是初始化为var $grid = $("#youGridId");
的变量。出现的对话框如下图所示: