要解决ag-grid的CellEditor单元格高度不正确的问题,可以尝试以下解决方法:
class CustomCellEditor extends agGrid.CellEditor {
getGui() {
const div = document.createElement('div');
div.style.height = '100px'; // 设置自定义单元格的高度
// 添加其他组件内容
return div;
}
}
.ag-cell-editing .ag-cell-editor {
height: 100px !important; // 设置单元格的高度
}
class CustomCellRenderer extends agGrid.CellRenderer {
getGui() {
const div = document.createElement('div');
div.style.height = '100px'; // 设置自定义单元格的高度
// 添加其他组件内容
return div;
}
}
以上方法可以根据具体的需求选择使用,以解决ag-grid的CellEditor单元格高度不正确的问题。