I'm using jqGrid version 4.4.1. I need to create x number of grids on the page. The first grid is outputting in a visible block, but others are output in the following format
<div style='display:none'>
//My jqGrid output
</div>
The first table which was output in the visible div has the correct width:
<div class="ui-jqgrid ui-widget ui-widget-content ui-corner-all" id="gbox_table0" dir="ltr" style="width: 920px;">
but all other tables have incorrect widths: eg. 100px;
<div class="ui-jqgrid ui-widget ui-widget-content ui-corner-all" id="gbox_table1" dir="ltr" style="width: 100px;">
When I try to render all the tables in visible divs, all the widths calculate correctly.