我正在使用angulargrid库作为表格网格。我正在尝试根据 angulargrid 上的行数实现动态高度,并使我的表格适合整个页面,而不是像现在一样滚动小表格中的数据。为此,我编写了一个可以帮助完成此任务的函数。
My code: angularjs
var columnDefs = [
{headerName:”headerName1” field: “field1”}
{headerName:”headerName2” field: “field2”}
];
var rowData = [];
scope.gridOptions = {
columnDefs: columnDefs,
rowData: null,
pinnedColumnCount: 2,
dontUseScrolls: true,
angularCompileRows: true,
enableSorting: true,
enableCellExpressions: true,
enableFilter: true,
rowSelection: 'multiple',
groupSuppressAutoColumn: true,
groupIncludeFooter: false,
groupHidePivotColumns:true,
groupUseEntireRow: true,
function setHeight(more) {
scope.height = (($scope.gridOptions.data.length * 30) + 30);
if (more) {
scope.height += more
}
scope.gridOptions.api.gridHeight = scope.height;
HTML:
<div
ag-grid="gridOptions" class="ag-fresh" style="width: 100%; height: 600px;" >
</div>
它不会动态调整网格的大小。我的数据没有发生任何事情。有人可以帮我为什么这不起作用吗?