Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在创建 jqgrid 之后。
在另一个 jquery 方法中,我想绑定事件以检查是否从 jqgrid 添加或删除行。
我想记录现有网格的变化。我怎么能这样做?
像这样的东西
$(grid).bind('jqGridRowAdded', function () { alert('hello'); });
重要的是要知道将使用哪种方法来添加行。最常见的情况是addRowData直接或间接使用方法。所以你应该使用jqGridAfterInsertRow而不是不存在的事件jqGridRowAdded。您可以在文档中找到支持的事件的简短描述。文档中当前未描述事件的参数。所以我建议你在 jqGrid 的源代码中找到参数(例如见该行)。
addRowData
jqGridAfterInsertRow
jqGridRowAdded