フォローアップとして:
この投稿に示されている以前のコードは、信頼性が低いため、最終的には放棄されました。 jqGridのドキュメントで推奨されているように、次のAPI関数を使用してグリッドのサイズを変更しています。
jQuery("#targetGrid").setGridWidth(width);
実際のサイズ変更を行うには、次のロジックを実装する関数がウィンドウのサイズ変更イベントにバインドされます。
親のclientWidthおよび(使用できない場合)offsetWidth属性を使用して、グリッドの幅を計算します。
健全性チェックを実行して、幅がxピクセルを超えて変更されていることを確認します(アプリケーション固有の問題を回避するため)
最後に、setGridWidth()を使用してグリッドの幅を変更します
サイズ変更を処理するコードの例を次に示します。
jQuery(window).bind('resize', function() {
// Get width of parent container
var width = jQuery(targetContainer).attr('clientWidth');
if (width == null || width < 1){
// For IE, revert to offsetWidth if necessary
width = jQuery(targetContainer).attr('offsetWidth');
}
width = width - 2; // Fudge factor to prevent horizontal scrollbars
if (width > 0 &&
// Only resize if new width exceeds a minimal threshold
// Fixes IE issue with in-place resizing when mousing-over frame bars
Math.abs(width - jQuery(targetGrid).width()) > 5)
{
jQuery(targetGrid).setGridWidth(width);
}
}).trigger('resize');
そして、マークアップの例:
<div id="grid_container">
<table id="grid"></table>
<div id="grid_pgr"></div>
</div>
これを本番環境で何の苦情もなく今しばらく使用しています(たとえば、サイドバーの幅を差し引くなど、サイト上で正しく見えるように調整する必要があります)。
$(window).bind('resize', function() {
$("#jqgrid").setGridWidth($(window).width());
}).trigger('resize');
自動サイズ変更:
JQgrid 3.5+の場合
if (grid = $('.ui-jqgrid-btable:visible')) {
grid.each(function(index) {
gridId = $(this).attr('id');
gridParentWidth = $('#gbox_' + gridId).parent().width();
$('#' + gridId).setGridWidth(gridParentWidth);
});
}
JQgrid 3.4.xの場合:
if (typeof $('table.scroll').setGridWidth == 'function') {
$('table.scroll').setGridWidth(100, true); //reset when grid is wider than container (div)
if (gridObj) {
} else {
$('#contentBox_content .grid_bdiv:reallyvisible').each(function(index) {
grid = $(this).children('table.scroll');
gridParentWidth = $(this).parent().width() – origami.grid.gridFromRight;
grid.setGridWidth(gridParentWidth, true);
});
}
}
これは私にとってうまく機能しているようです
$(window).bind('resize', function() {
jQuery("#grid").setGridWidth($('#parentDiv').width()-30, true);
}).trigger('resize');
私はレイアウトに960.gsを使用しているので、私の解決策は次のとおりです:
$(window).bind(
'resize',
function() {
// Grid ids we are using
$("#demogr, #allergygr, #problemsgr, #diagnosesgr, #medicalhisgr").setGridWidth(
$(".grid_5").width());
$("#clinteamgr, #procedgr").setGridWidth(
$(".grid_10").width());
}).trigger('resize');
// Here we set a global options
jQuery.extend(jQuery.jgrid.defaults, {
// altRows:true,
autowidth : true,
beforeSelectRow : function(rowid, e) { // disable row highlighting onclick
return false;
},
datatype : "jsonstring",
datastr : grdata, // JSON object generated by another function
gridview : false,
height : '100%',
hoverrows : false,
loadonce : true,
sortable : false,
jsonReader : {
repeatitems : false
}
});
// Demographics Grid
$("#demogr").jqGrid( {
caption : "Demographics",
colNames : [ 'Info', 'Data' ],
colModel : [ {
name : 'Info',
width : "30%",
sortable : false,
jsonmap : 'ITEM'
}, {
name : 'Description',
width : "70%",
sortable : false,
jsonmap : 'DESCRIPTION'
} ],
jsonReader : {
root : "DEMOGRAPHICS",
id : "DEMOID"
}
});
//以下で定義される他のグリッド...
リンクのコードから借りて、次のようなものを試すことができます。
$(window).bind('resize', function() {
// resize the datagrid to fit the page properly:
$('div.subject').children('div').each(function() {
$(this).width('auto');
$(this).find('table').width('100%');
});
});
このようにして、window.onresizeイベントに直接バインドします。これは、実際に質問から望むもののように見えます。
グリッドが100%の幅に設定されている場合、コンテナの拡張時に自動的に拡張するはずですが、使用しているプラグインに複雑さがなければ、それについては知りません。
もし、あんたが:
shrinkToFit: false
(固定幅列の平均)autowidth: true
次のスタイルを使用して、流動的な幅のグリッドを作成できます。
.ui-jqgrid {
max-width: 100% !important;
width: auto !important;
}
.ui-jqgrid-view,
.ui-jqgrid-hdiv,
.ui-jqgrid-bdiv {
width: auto !important;
}
主な答えは私にとってはうまくいきましたが、IEでアプリが非常に応答しなくなったので、提案されたようにタイマーを使用しました。コードは次のようになります($(#contentColumn)
はJQGridが置かれているdivです):
function resizeGrids() {
var reportObjectsGrid = $("#ReportObjectsGrid");
reportObjectsGrid.setGridWidth($("#contentColumn").width());
};
var resizeTimer;
$(window).bind('resize', function () {
clearTimeout(resizeTimer);
resizeTimer = setTimeout(resizeGrids, 60);
});
Hello Stackオーバーフロー愛好家。私はほとんどの答えを楽しんで、いくつかのアップ投票さえしましたが、IE 8何らかの奇妙な理由で...私はこれらのリンクに出くわしました。この男は、機能するように見えるライブラリを作成しました。jqueryUIに加えて、プロジェクトにそれを含め、テーブルとdivの名前をスローします。
http://stevenharman.net/blog/archive/2009/08/21/creating-a-fluid-jquery-jqgrid.aspx
これは動作します。
var $targetGrid = $("#myGridId");
$(window).resize(function () {
var jqGridWrapperId = "#gbox_" + $targetGrid.attr('id') //here be dragons, this is generated by jqGrid.
$targetGrid.setGridWidth($(jqGridWrapperId).parent().width()); //perhaps add padding calculation here?
});
autowidth: true
私にとって完璧に働いた。 here から学んだ。
<script>
$(document).ready(function(){
$(window).on('resize', function() {
jQuery("#grid").setGridWidth($('#fill').width(), false);
jQuery("#grid").setGridHeight($('#fill').height(),true);
}).trigger('resize');
});
</script>