构建wijgrid的代码:
// Construct the grid
$("#wijgridObject").wijgrid({
allowPaging: true,
allowSorting: true,
pageSize: gridTotalRows,
pagerSettings: { position: "bottom" },
allowColMoving: false,
columnResizing: false,
allowColSizing: false,
data: currentLayer.GridObjects,
showFilter: true,
rowStyleFormatter: function (args)
{
...
},
columns: gridColumnGroupings
});
如何设置Wijmo网格的宽度?我似乎没有自动填充浏览器窗口的宽度....
wijmo人是无用的,没有其他主题关于将wijgrid的宽度设置为100%
答案 0 :(得分:0)
获得父母元素的贬值
var width = $("#parentElement")。get(0).offsetWidth; var height = $("#parentElement")。get(0).offsetHeight;
$(" table")。wijgrid(" setSize",width,heigth);
如果您想要自动设置任何尺寸,请使用" auto"宽度或高度。
答案 1 :(得分:-1)
$("#wijgridObject").wijgrid("option", "pageSize", calculateGridHeight());
或
$("#wijgridObject").wijgrid("option", "pageSize", 256);