Is there any way to resize a jqGrid when the browser window is resized? I have tried the method described here but that technique does not work in IE7.
|
Been using this in production for some time now without any complaints (May take some tweaking to look right on your site.. for instance, subtracting the width of a sidebar, etc)
|
|||
|
|
As a follow-up: The previous code shown in this post was eventually abandoned because it was unreliable. I am now using the following API function to resize the grid, as recommended by the jqGrid documentation:
To do the actual resizing, a function implementing the following logic is bound to the window's resize event:
Here is example code to handle resizing:
And example markup:
|
|||||||||||||
|
|
Auto resize: For jQgrid 3.5+
For jQgrid 3.4.x:
|
|||||||||
|
|
this seems to be working nicely for me
|
|||
|
|
I'm using 960.gs for layout so my solution is as follows:
// Other grids defined below... |
|||||||||||
|
|
Borrowing from the code at your link you could try something like this:
This way you're binding directly to the window.onresize event, which actually looks like what you want from your question. If your grid is set to 100% width though it should automatically expand when its container expands, unless there are some intricacies to the plugin you're using that I don't know about. |
|||||
|
|
The main answer worked for me but made the app extremely unresponsive in IE, so I used a timer as suggested. Code looks something like this (
|
|||||||||||||
|
|
Hello Stack overflow enthusiasts. I enjoyed most of answers, and I even up-voted a couple, but none of them worked for me on IE 8 for some strange reason... I did however run into these links... This guy wrote a library that seems to work. Include it in your projects in adittion to jquery UI, throw in the name of your table and the div. http://stevenharman.net/blog/archive/2009/08/21/creating-a-fluid-jquery-jqgrid.aspx |
||||
|
worked perfectly for me. learnt from here. |
|||||||
|
|
|||
|
|