tags:

views:

443

answers:

2

I have tried to figure out how to disable the header for a jqGrid, so that the row containing the column names does not show. So far, I have come up with no solution. Is there any way to do this?

+3  A: 

I don't see that the plugin gives you any options for this, but you could simply find and hide the container for the header.

...set up grid...

$('.ui-jqgrid-hdiv').hide();
tvanfosson
Thanks, maybe not the ideal solution, but it works.
Tore
A: 

Thanks, maybe not the ideal solution, but it works

mahi