Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using the jqGrid available at http://www.trirand.com/jqgrid/jqgrid.html and I can't find a way to disable its expand/collapse button on the top right of the header. Anyone know if there's an option to do that?

I'd linke to remove the thing circled in red: alt text

share|improve this question

2 Answers

up vote 36 down vote accepted

Yes, there is an option for this: hidegrid: false


From the jqGrid documentation wiki for Options:

hidegrid

boolean

Enables or disables the show/hide grid button, which appears on the right side of the Caption layer. Takes effect only if the caption property is not an empty string.

share|improve this answer
Thanks Justin...must've overlooked it. – btelles Jan 6 '10 at 22:09
Don't worry about it, it took me awhile to find this one too :) – Justin Ethier Jan 6 '10 at 22:16
2  
Thanks for the answer, but to be totally accurate, it's not a colmodel option but an option. trirand.com/jqgridwiki/doku.php?id=wiki:options ;) – bounav Jan 21 '10 at 13:29
Good point, thanks for the catch! :) I just updated my answer. – Justin Ethier Jan 21 '10 at 14:57
Excellent solution!! my vote of + – imdadhusen Jul 12 '11 at 6:44

Use this code to colllapse all jqgrid on the page

elements = $('div.ui-jqgrid-bdiv');
elements.each(function() { $(this).css("display", "none"); });
elements = $('div.ui-jqgrid-hdiv');
elements.each(function() { $(this).css("display", "none"); });
$('#JQGrid_pager').hide();
$('#rs_mJQGrid').hide();
share|improve this answer
That may work, but it is safer to use the option in case the underlying implementation were to change in a future release of jqGrid... – Justin Ethier May 13 '11 at 17:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.