我想使用ag-grid来自动设置桌子高度。供您参考,我正在使用ag-grid无限模式渲染表格。
我正在将ag-grid用于香草javascript。我已经尝试了文档建议的autoHeight,但是它不起作用。
column_defs: [
{
autoHeight: true,
cellStyle: {"white-space": "normal"},
field: "paragraph",
headerName: "paragraph",
width: 100
}
]
var gridOptions = {
defaultColDef: {
sortable: true,
filter: 'agTextColumnFilter',
filterParams:{
filterOptions:['contains'],
debounceMs:500,
suppressAndOrCondition: true
},
cellStyle: {'white-space': 'normal', 'word-wrap': 'break-word'},
resizable: true,
editable: true
},
components:{
loadingRenderer:function(params) {
if (params.value !== undefined) {
return params.value;
} else {
return '<img src="../images/loading.gif">';
}
}
},
//debug: true,
columnDefs: columnDefs,
pagination: true,
rowModelType: 'infinite',
onColumnResized: onColumnResized
};
我仍然没有将行设置为自动高度,而是使用默认高度。