-1

构建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% 的话题

4

2 回答 2

0

获取父元素的维度

var width = $("#parentElement").get(0).offsetWidth; var height = $("#parentElement").get(0).offsetHeight;

$( "table" ).wijgrid( "setSize", width , heigth );

如果您想自动设置任何尺寸,请使用“自动”作为宽度或高度。

于 2015-04-01T23:14:52.443 回答
-1
$("#wijgridObject").wijgrid("option", "pageSize", calculateGridHeight());

或者

$("#wijgridObject").wijgrid("option", "pageSize", 256);
于 2013-11-22T23:08:27.830 回答