0
我嘗試使用此解決方案,但它不適用於我,它的正確調整列高度,但文本是沒有Wrapeed。 Ag-Grid - Row with multiline textAg-greed cell multiline
var gridOptions = {
columnDefs: columnDefs,
rowSelection: 'multiple',
enableColResize: true,
enableSorting: true,
enableFilter: true,
enableRangeSelection: true,
suppressRowClickSelection: true,
animateRows: true,
onModelUpdated: modelUpdated,
debug: true,
autoSizeColumns:true,
getRowHeight: function(params) {
// assuming 50 characters per line, working how how many lines we need
return 18 * (Math.floor(params.data.zaglavie.length/45) + 1);
}
};
function createRowData() {
return gon.books;
}