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.
|
2
|
|
|
|
|
|
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. |
||
|
|
|
As a follow-up: The previous code show 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 binded to the window's resize event:
|
||||
|
|
|
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)
|
||
|
|
|
|
I have tried this function but it is not working for me in FF and IE .Could you please clarify me each and every line with explanation.Instead of 'div.subject' ,'table' what parameters i need to use .Where we need to call this function ?. |
||
|
|
|
|
Auto resize: For jQgrid 3.5+
For jQgrid 3.4.x:
|
||
|
|
|
|
It work, but the last column increment in your width, only in IE. |
|||
|
|
