I am new in jqGrid and I need that grid will be resized on resizing the window of the web browser. I have applied autowidth : true;
, shrinkToFit: true;
in grid but that is not working.
Setting of CSS width : 100%
is the only one implementation, but it's not good in case of jqGrid
which set width
in px
explicitly on many its internal structures.
what would be the perfect way to solve it ??
jqGrid uses fixed width
value on many internal structures (divs, tables and so on). So one can't just set CSS width : 100%
. Nevertheless there are another way to do the same. One can register resize
event handler on window
object and to call setGridWidth
explicitly. The method adjust all internals structures of jqGrid to new width. So it would be clean method.
If you use autowidth: true
then jqGrid set the width of jqGrid to the width of it's parent only once. Inside of $(window).resize
handler we can get new (the current) width of the parent and reset the value of grid width
. The corresponding code will be the following
$(window).on("resize", function () {
var $grid = $("#list"),
newWidth = $grid.closest(".ui-jqgrid").parent().width();
$grid.jqGrid("setGridWidth", newWidth, true);
});
I used $("#list").closest(".ui-jqgrid")
instead of $("#list")
because jqGrid build some dives over the main <table>
element. $("#list").closest(".ui-jqgrid")
gives as the outer div which include all the elements of the grid.
The modified fiddle demo demonstrates the code live.
I wrote a css you can use to make grid responsive: https://github.com/guylando/Responsive-jqGrid/blob/master/Responsive-jqGrid.css
Its faster than using javascript in my opinion.
Here is the css code:
.ui-jqgrid .ui-jqgrid-toppager .ui-pager-control, .ui-jqgrid .ui-jqgrid-pager .ui-pager-control {
height: auto;
}
.ui-jqgrid .ui-pager-control td[id$="_toppager_center"], .ui-jqgrid .ui-pager-control td[id$="pager_center"] {
width: auto !important;
white-space: normal !important;
height: auto;
}
.ui-jqgrid .ui-pager-control td[id$="_toppager_left"], .ui-jqgrid .ui-pager-control td[id$="pager_left"] {
width: auto !important;
white-space: normal !important;
height: auto;
}
.ui-jqgrid .ui-pager-control td[id$="_toppager_right"], .ui-jqgrid .ui-pager-control td[id$="pager_right"] {
width: auto !important;
white-space: normal !important;
height: auto;
}
.ui-jqgrid .ui-jqgrid-bdiv, .ui-jqgrid .ui-jqgrid-view.table-responsive, .ui-jqgrid, .ui-jqgrid-pager,
.ui-jqgrid-toppager, .ui-jqgrid-hdiv {
width: auto !important;
}
.ui-jqgrid .ui-pager-control td[id$="_toppager_left"], .ui-jqgrid .ui-pager-control td[id$="pager_left"],
.ui-jqgrid .ui-pager-control td[id$="_toppager_center"], .ui-jqgrid .ui-pager-control td[id$="pager_center"] {
overflow-x: auto;
overflow-y: hidden;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With