标签: jqgrid
如何禁用delGridRow的确认框?因为我不想通知用户的更改。
答案 0 :(得分:6)
要解决此问题,您只需模拟点击"删除"具有id =" #dData"的按钮;在afterShowForm内:
afterShowForm: function ($form) { $("#dData", $form.parent()).click(); }
请参阅the demo。