Modified the original idea by Oleg and made it into a function that can make several "spanned" headers:
function head_groups(mygrid, settings){
var colModel, header, config, ths;
if (typeof mygrid == 'string') mygrid = $(mygrid);
colModel = mygrid[0].p.colModel;
ths = mygrid[0].grid.headers;
header = mygrid.closest("div.ui-jqgrid-view").find("table.ui-jqgrid-htable > thead");
if (!header.children("tr.head_group").length) {
header.find("th").attr('rowspan', 2);
header.append('<tr class="head_group"></tr>');
}
for (c in settings) {
config = settings[c]; // caption, col, span
for(var i=0; i<colModel.length; i++) {
if (colModel[i].name == config.col) {
for(var s=0; s<config.span; s++) {
$(ths[i+s].el).removeAttr('rowspan');
}
i +=s; // skip unnecessary cycles
header.children("tr.head_group").append('<th class="ui-state-default ui-th-ltr" id="span_'+config.col+'" colspan="'+config.span+'" role="columnheader">'+config.caption+'</th>');
}
}
}
}
Usage sample:
head_groups("table#results", [
{caption: 'Test 1', col: 'num', span: 2},
{caption: 'Result', col: 'sta', span: 3},
{caption: 'Bla bla bla', col: 'bl2', span: 2}
]);
It also adds a class for the header row and IDs for the header cells for some styling or special functionality.
In fact this can be easily integrated in the jqGrid core :)