1

I trying to create grid that contains rows with the following structure:

       item name, icon for delete, icon for sharing.

I'm trying to use JQGrid, and i can't find way to hide the column names (it's not necessary and i need only the data which comes from the server).

Do you know it it's possible to create JqGrid without displaying the column names? Any other alternatives that can help?

Thanks, Lior

Haim Evgi
  • 123,187
  • 45
  • 217
  • 223
liorix
  • 807
  • 1
  • 10
  • 21
  • possible duplicate of [jqGrid without header](http://stackoverflow.com/questions/2500477/jqgrid-without-header) –  Aug 01 '12 at 11:21
  • see this: http://stackoverflow.com/questions/2500477/jqgrid-without-header – Haim Evgi Jul 04 '10 at 13:31
  • Hi, Thanks, it works. Is it possible to apply this on specific grid and not on all grids? Thanks, Lior – liorix Jul 04 '10 at 14:47

1 Answers1

3

I've found out how to do it...

using firebug Iv'e found out that JQGrid name the grid div name as: gview_gridame. So using

$('#gview_MyGridName .ui-jqgrid-hdiv').hide();

will remove the header from specific grid.

Moslem Ben Dhaou
  • 6,897
  • 8
  • 62
  • 93
liorix
  • 807
  • 1
  • 10
  • 21