我在jqGrid单元格中有自定义按钮。



在单击时,它按预期方式调用附加功能,但此后它将引发jqGrid onSelectRow事件。

如何防止onSelectRow上升?

我需要在行中的其他所有单元格上使用该事件。

最佳答案

如果定义事件处理程序beforeSelectRow并返回false某个时间,它将阻止行选择,并且原因可以防止抛出onSelectRow事件。

关于javascript - jqgrid防止onSelectRow,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4331342/

10-09 23:49