自定义单元格组件的 Ag Grid 行自动高度
AgGrid row autoHeight for custom cell component
有人知道 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;
}
有谁知道可以将自动高度与 ag-grid-angular 一起用于 cellRendererFramework 吗?
不,您不能为编辑器执行此操作。您必须为自动行高配置列。请参阅 https://www.ag-grid.com/javascript-grid-row-height/#auto-row-height
上的官方文档
有人知道 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;
}
有谁知道可以将自动高度与 ag-grid-angular 一起用于 cellRendererFramework 吗?
不,您不能为编辑器执行此操作。您必须为自动行高配置列。请参阅 https://www.ag-grid.com/javascript-grid-row-height/#auto-row-height
上的官方文档