views:

43

answers:

2

Hi,

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

A: 

see this: http://stackoverflow.com/questions/2500477/jqgrid-without-header

Haim Evgi
Hi,Thanks, it works.Is it possible to apply this on specific grid and not on all grids?Thanks,Lior
A: 

Hi,

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..

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

will remove the header from specific grid.

Thanks, Lior