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?
相关问题
- How to bind a dropdown list inside jqgrid row cell
- jQgrid filterToolbar fails with searchOnEnter
- Detecting checkbox event in jqGrid cell
- How to alter data received from the server before
- How to access other row data from a cell's cus
相关文章
- jqGrid Row Object in onSelectRow
- Weird behavior of jqgrid Grouping
- jQuery - jqGrid - submit buttons in each row
- JqGrid: sorting of local data
- How to Expand/Shrink row in Jqgrid dynamically
- VB.net FileUpload using Ajaxcall
- jqGrid addRowData doesn't work with grid as su
- How to turn off column highlighting (on hover) for
This works:
Not sure why no-one has come up with the CSS solution yet...
You can scope it using a wrapper container for a single instance if you have other grids that shouldn't be affected.
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.
Omitting the 'caption' property hides the header.
Very late I know, but for someone still wanting to know. This was found after looking through the source.
There is an option for this:
hidegrid: false
look at following Is it possible to remove the expand/collapse button from the jqGrid header?