1

如果当前未设置网格的高度,则不会显示网格。虽然这对于具有多行的网格非常有用,但对于具有少量行(例如 4)的网格来说,这给我带来了问题。我在一个组件中放置了三个网格,并且希望网格高度随着添加行到每个网格。然而,由于固定高度的限制,即使网格只有一行,所有的网格高度都会保留在显示器上。

我努力了

<bwu-datagrid id='mygrid' style='width: 200px; height: 30%'><bwu-datagrid>

但它不起作用。

请问有什么建议吗?谢谢

4

1 回答 1

0

我假设您正在寻找的autoHeightGridOptions. 有关示例,请参见https://github.com/bwu-dart/bwu_datagrid/blob/master/example/src/e11_autoheight/app_element.dart#L28

var gridOptions = new GridOptions(
  editable: false,
  enableAddRow: false,
  enableCellNavigation: false,
  autoHeight: true);
于 2015-06-10T06:29:55.987 回答