我已经实现了一个带有子网格的JQGrid。
我有一个要求,只隐藏子网格头(外部主网格头仍然应该是可见的)。
我尝试使用下面的代码$("。ui-jqgrid-hdiv", "#gbox_" + subgrid_id).hide()上的subGridRowExpanded,这并没有解决问题。
尝试从主网格中隐藏gridComplete函数中的标题:
gridComplete: function() {
var rowIds = $("#grid").getDataIDs();
$.each(rowIds, function (index, rowId) {
var subgridNameBasedOnRowId = "somesubgrid_" + rowId; //the name of my subgrid
$(".ui-jqgrid-hdiv", "#gbox_" + subgridNameBasedOnRowId).hide();
});
}