JQGrid - Create grid without column names
I trying to create grid that contains rows with the followi开发者_高级运维ng 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
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.
精彩评论