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. An
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();