Using the jquery plug-in, the main purpose is to realize that when the window changes, the jqgird table also changes size.
html:
<div id="liste">
<table id="list" cellpadding='0' cellspacing='0' ></table>
<div id="pager" style="text-align:center;"></div>
</div>
JS:
$(function(){
$(window).resize(function(){
$("#list").setGridWidth($(window).width());
});
});