jqgrid中的确认框

问题描述 投票:-3回答:1

我们可以在jqgrid中使用与jqgrid中的delete相同的确认框来执行jqgrid中的任何其他操作。我们需要在类或html中进行哪些更改,以使外观与删除确认框相同。

javascript jquery jqgrid
1个回答
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");的变量。生成的对话框如下图所示:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.