### Description It is same as https://github.com/ag-grid/ag-grid/issues/8855 Following code won't work as expected. ```python3 from nicegui import ui grid = ui.aggrid({ 'defaultColDef': {'flex': 1}, 'columnDefs': [ {'headerName': 'Name', 'field': 'name'}, {'headerName': 'Age', 'field': 'age'}, {'headerName': 'Parent', 'field': 'parent', 'hide': True}, ], 'rowData': [ {'name': 'Alice', 'age': 18, 'parent': 'David'}, {'name': 'Bob', 'age': 21, 'parent': 'Eve'}, {'name': 'Carol', 'age': 42, 'parent': 'Frank'}, ], 'rowSelection': {'mode':"multiRow",'headerCheckbox':False}, }).classes('max-h-40') ui.run(native=True) ```  When i upgrade ag-grid to 32.2.1, it works well. 