Possible to make jqGrid stretch to 100%? Possible to make jqGrid stretch to 100%? javascript javascript

Possible to make jqGrid stretch to 100%?


It works for me:

width: null,shrinkToFit: false,


I'm using this to set the width of the grid to the width of the parent container.

function resizeGrid() {        var $grid = $("#list"),        newWidth = $grid.closest(".ui-jqgrid").parent().width();        $grid.jqGrid("setGridWidth", newWidth, true);}