解决方法
您可以使用
delGridRow 0700或
afterShowForm覆盖构图对话框的文本.
例如
@H_301_10@beforeShowForm: function ($form) { $("td.delmsg",$form[0]).html("Do you really want delete the row with <b>id=" + $("#list").jqGrid('getGridParam','selrow') + "</b>?"); }(参见the old demo)将显示如下所示的确认对话框:
您可以轻松地修改示例以显示有关删除行的任何其他信息.您可以使用getRowData或getCell从删除行获取一些信息.
更新:有关其他信息,请参阅the answer.