单击组标题行时是否触发了事件处理程序?我知道:
onClickGroup: function(hid) {
/* Fired when group header icon is toggled */
}
但是,当单击包含组的行时,我还需要模拟相同的行为。我可以使用以下方式模拟切换:
jQuery('#GridID').jqGrid('groupingToggle', 'QCStatusghead_0_3');
答案 0 :(得分:2)
您可以使用简单的代码
$grid.click(function (e) {
var $groupHeader = $(e.target).closest("tr.jqgroup");
if ($groupHeader.length > 0) {
$(this).jqGrid("groupingToggle", $groupHeader.attr("id"), $groupHeader);
}
});
其中$grid
是网格($("#gridId")
)。
请参阅the demo。