tags:

views:

2004

answers:

1

Hi i have a problem in my jqgrid when i am clicking the pane the grid size is not resizing .how to resize it ?.

+4  A: 

Not sure if this is what you mean, but this should keep your grid at 100% width:

$(window).bind('resize', function() {
    $("#jqgrid").setGridWidth($(window).width());
}).trigger('resize');
Stephen J. Fuhry