You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(plugin-aggrid): Address all PR review feedback
- Fix handleExportCSV to guard on gridRef.current?.api (issue #1)
- Add dedicated onContextMenuAction callback instead of overloading onCellClicked (issue #2)
- Remove icon property from customItems to prevent HTML injection (issue #3)
- Remove validation claim from README - only basic AG Grid editing (issue #4)
- Add test assertions for all new inputs (editable, exportConfig, etc.) (issue #5)
- Fix onExport type to only support 'csv' format (issue #6)
- Remove unused ColumnConfig properties (autoSize, groupable) (issue #9)
- Type schema props with proper interfaces instead of 'any' (issue #10)
- Update export description to only mention CSV (issue #11)
- Add AG Grid Community vs Enterprise section to docs (issue #8)
- Update README and docs with new callback and clarifications
All tests pass (8/8), lint clean (0 errors)
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
Copy file name to clipboardExpand all lines: content/docs/plugins/plugin-aggrid.mdx
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -365,10 +365,14 @@ Note: `ag-grid-community` and `ag-grid-react` are peer dependencies and must be
365
365
},
366
366
height: 450
367
367
}}
368
-
title="Enterprise Features"
369
-
description="Full-featured grid with editing, export, status bar, context menu, and more"
368
+
title="Advanced Features"
369
+
description="Full-featured grid with editing, export, status bar, context menu, and more (AG Grid Community)"
370
370
/>
371
371
372
+
## AG Grid Community vs Enterprise
373
+
374
+
This plugin uses **AG Grid Community Edition** which is free and open source. All features shown in the examples above work with the Community edition. Some advanced features like integrated charting (`enableCharts`) may require AG Grid Enterprise (commercial license). See [AG Grid Pricing](https://www.ag-grid.com/license-pricing/) for details.
375
+
372
376
## Features
373
377
374
378
-**Lazy Loading**: AG Grid libraries are loaded on-demand for optimal performance
@@ -19,6 +19,10 @@ A lazy-loaded data grid component for Object UI based on AG Grid Community Editi
19
19
-**Multiple Themes**: Support for Quartz, Alpine, Balham, and Material themes
20
20
-**Customizable**: Full access to AG Grid's GridOptions for advanced configuration
21
21
22
+
## AG Grid Community vs Enterprise
23
+
24
+
This plugin uses **AG Grid Community Edition** which is free and open source. Most features (sorting, filtering, editing, CSV export, basic context menu) work with the Community edition. Some advanced features like integrated charting may require AG Grid Enterprise (commercial license). See [AG Grid Pricing](https://www.ag-grid.com/license-pricing/) for details.
0 commit comments