Answers for "jqgrid width 100 percent"

1

set width of jqgrid

var DataGrid = $('#gridId');

 //sets the grid size initially
 DataGrid.jqGrid('setGridWidth', parseInt($(window).width()) - 20);    

 //handles the grid resize on window resize
 $(window).resize(function () { 
       DataGrid.jqGrid('setGridWidth', parseInt($(window).width()) - 20); 
 });
Posted by: Guest on June-07-2021

Code answers related to "jqgrid width 100 percent"

Browse Popular Code Answers by Language