I have a jqgrid set up in Visual Studio.
Everything works well apart from window resizing.
The window itself resizes fine.
However, the grid only resizes if I click the “refresh” button on the browser menu bar.
I have spent about a day going through online examples and I cant see where I am going wrong.
I have set jxgrid width to ‘100%’
I have resize function called ok.
I have tried “refresh” function etc but nothing resizes the grid.
$(window).bind(‘resize’, function () {
$(“#jqxgrid”).jqxGrid(‘updatebounddata’, ‘cells’); //refresh screen
}).trigger(‘resize’);
Any clues would be appreciated.