将 bwu-datagrid 的高度设置为动态
Setting height of bwu-datagrid to dynamic
如果当前没有设置网格的高度,则不会显示网格。虽然这对于多行网格非常有用,但对于行数较少的网格(例如 4),它会给我带来问题。我在一个组件中放置了三个网格,并希望网格高度随着添加行到每个网格。但是由于固定高度的限制,即使网格只有一行,显示时也会保留所有网格高度。
我试过了
<bwu-datagrid id='mygrid' style='width: 200px; height: 30%'><bwu-datagrid>
但是没用。
有什么建议吗?谢谢
我假设您要查找的是 GridOptions
中的 autoHeight
设置。有关示例,请参见 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);
如果当前没有设置网格的高度,则不会显示网格。虽然这对于多行网格非常有用,但对于行数较少的网格(例如 4),它会给我带来问题。我在一个组件中放置了三个网格,并希望网格高度随着添加行到每个网格。但是由于固定高度的限制,即使网格只有一行,显示时也会保留所有网格高度。
我试过了
<bwu-datagrid id='mygrid' style='width: 200px; height: 30%'><bwu-datagrid>
但是没用。
有什么建议吗?谢谢
我假设您要查找的是 GridOptions
中的 autoHeight
设置。有关示例,请参见 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);