自定义单元格组件的AgGrid行autoHeight

时间:2019-08-23 09:16:18

标签: angular ag-grid ag-grid-angular

enyone知道agGrid autoHeight列属性是否可用于ag-grid-angular中的cellRendererFramework吗?

我已经尝试过了,但是对我来说却没有用 https://www.ag-grid.com/javascript-grid-row-height/#auto-row-height

这是我的列配置

{
    headerName: 'Custom title',
    field: 'title',
    cellRendererFramework: CustomTitleCellComponent,
    autoHeight: true,
    cellClass: 'ag-table-cell-auto-height'
  }

CustomTitleCellComponent的高度取决于其内容

列的CSS样式

.ag-table-cell-auto-height {
  white-space: normal;
}

有人知道对于cellRendererFramework可以使用带有ag-grid-angular的autoheight吗?

1 个答案:

答案 0 :(得分:0)

不,您不能对编辑器执行此操作。您必须为自动行高配置列。请参阅https://www.ag-grid.com/javascript-grid-row-height/#auto-row-height

上的官方文档