固定のタイトル バーがありますが、jqgrid 要素が正しくスクロールしません... テキストをスクロールすると、テキストがタイトル バーの後ろに移動します (正しい)、jqgrid はそうではありません (間違っています)
この問題を解決するにはどうすればよいですか?
事前にトランクス!ロビー
編集: スクリーンショット: https://docs.google.com/open?id=0BxGEE1yw1kGwLVdOVzdKRWlDcTA
コードは非常に単純です。
<div id='divListVol' class='divList stat' >
<!-- Lista dei volontari -->
<table id="listVol" class='stat'></table>
<div id="pagerListVol" class='stat'></div>
</div>
jQuery("#listVol").jqGrid({
url: 'php/getVolontari.php?for=list',
datatype: "json",
contentType: "text/plain; charset=ISO-8859-1",
loadonce:true,
colNames:['Cod','Cognome', 'Nome','Modifica!'],
colModel:[ {
name:'id',
index:'id',
sortable: false,
width: 10
},{
name:'cognome',
index:'cognome',
sortable: true,
width: 35
},{
name:'nome',
index:'nome',
width: 35
},{
name:'modifica',
index:'modifica',
sortable: false,
width: 20
}],
onSelectRow: function(rowid) {
$.ajax({
url: "php/myRequest.php?for=info&id="+rowid,
type:"GET",
dataType: "json",
success: function(response) {.....},
error: function(response) { ... }
});
},
onCellSelect: function (rowid, iCol) {
...
},
rowNum:30,
rowList:[10,20,30],
height: 'auto',
width: 455,
ignoreCase: true,
autowidth: true,
pager: '#pagerListVol',
sortname: 'cognome',
viewrecords: true,
sortorder: "asc",
caption:"Lista Volontari",
multiselect: false,
});
jQuery("#listVol").jqGrid('navGrid','#pagerListVol',{refresh:true, search:true, add:false,edit:false,del:false});