How to use Aggrid statusbar #5086
-
First Check
Example Codefrom nicegui import ui
ui.aggrid({
'columnDefs': [
{'headerName': 'Name', 'field': 'name', 'filter': 'agTextColumnFilter'},
{'headerName': 'Age', 'field': 'age', 'filter': 'agNumberColumnFilter'},
],
'rowData': [
{'name': 'Alice', 'age': 18},
{'name': 'Bob', 'age': 21},
{'name': 'Carol', 'age': 42},
],
'statusBar': {
'statusPanels': [
{'statusPanel': 'agTotalAndFilteredRowCountComponent'},
]
},
}).classes('max-h-40')
ui.run() DescriptionI try to get an AggGrid status bar with the above code, but no status bar is displayed. Thank you for the nice package! NiceGUI Version2.23.3 Python Version3.12.7 BrowserFirefox Operating SystemLinux Additional ContextNo response |
Beta Was this translation helpful? Give feedback.
Answered by
falkoschindler
Aug 28, 2025
Replies: 1 comment 1 reply
-
Hi @trichter, The status bar requires AG Grid Enterprise which is not part of NiceGUI. See #2431 for a related discussion. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
trichter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @trichter,
The status bar requires AG Grid Enterprise which is not part of NiceGUI. See #2431 for a related discussion.