日期:2014-05-16 浏览次数:20465 次
var tid = this.tableId;
$.each($(".ui-jqgrid-hdiv"),function(key,value){
if($(value).parent().attr("id").indexOf(tid)!=-1){
$(value).hide();
}
});
}
});
jQuery("#jqgrid").jqGrid({
gridComplete: function () {
$(this).closest('.ui-jqgrid-view').find('div.ui-jqgrid-hdiv').hide()
},