What is the exact reverse of onCellSelect function in jqGrid?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: My code - onCellSelect: function(rowid,iRow,iCol,e) { jQuery("#createrule").click(function(){ hidePopup(); showPopUp6(); }); onCellSelect: }, What is the exact reverse of onCellSelect function in jqGrid? 回答1: You should don't register new click event handler every time if the user click in the grid. jqGrid register click event handler one during creating the grid. So you can do some actions in case of user click on some cell of the grid. Parameters rowid and iCol helps you to identify which cell was clicked and the e parameter (the Event