# @toolbox-web/grid > A high-performance, framework-agnostic data grid built with pure TypeScript and native Web Components. Zero runtime dependencies. Works in vanilla JS, React, Angular, Vue, Svelte, and any JavaScript environment. This is a **Web Component** (``) that works natively in all frameworks without wrappers (optional adapter packages for React, Angular, and Vue add JSX/template/slot renderers). Configuration uses a **single source of truth** pattern via the `gridConfig` property. Capabilities are enabled through tree-shakeable `features` (declarative, recommended) or `plugins` (manual class instantiation). The grid uses **light DOM** (not Shadow DOM) for CSS cascade and accessibility. **Every documentation page has a plain-markdown companion**: append `.md` to any docs URL (e.g. `/grid/getting-started.md`) to fetch a lean, self-contained Markdown rendering with demo code inlined. All links below already use that `.md` form. **Agent rules (read before generating code):** - **RULE 0 — prefer one `gridConfig` object** over fragmented props/inputs/attributes. Reserve props for reactive `rows` and the imperative `ref`/handle. The same `GridConfig` is portable across vanilla, React, Angular, Vue. - **Side-effect imports are always required** even when using `gridConfig.features.X` (`import '@toolbox-web/grid/features/selection'`). Vanilla JS must also `import '@toolbox-web/grid'`. - **Height is required** (`tbw-grid { height: 400px; }`) — the grid renders at zero height without it. - **Editing is opt-in** — `editable: true` throws unless the editing feature/plugin is loaded. - **Plugin order/compat:** `Clipboard` needs `Selection`; `UndoRedo` needs `Editing`. `GroupingRows`/`Tree`/`Pivot` are mutually exclusive. - **Use `cell-activate`** (pointer + keyboard, cancelable) for click-to-open, not `cell-click`/`row-click` (pointer-only). Don't add `SelectionPlugin` just to make a row clickable. - Light DOM (no Shadow DOM); em-based sizing (scale via `font-size`); `await grid.ready()` for post-render work. For the full directives and copy-paste recipes, see `llms-full.txt`. ## Core Documentation - [Introduction](https://toolboxjs.com/grid/introduction.md): A high-performance, framework-agnostic data grid web component for JavaScript, React, Angular, and Vue. Zero dependencies, 100k+ rows, virtualized rendering. - [Getting Started](https://toolboxjs.com/grid/getting-started.md): Install @toolbox-web/grid and render your first grid in under a minute. Covers npm, CDN, ES modules, declarative HTML, and full framework integration for Vanilla JS, React, Vue, and Angular. - [AI-Assisted Development](https://toolboxjs.com/grid/ai.md): Machine-readable docs for @toolbox-web/grid — llms.txt, llms-full.txt, and per-page Markdown companions that let GitHub Copilot, Cursor, Claude, and other agents generate correct grid code. - [Core Features](https://toolboxjs.com/grid/core.md): Interactive playground, configuration, rendering, loading states, variable row heights, events, methods, and more for @toolbox-web/grid. - [Demos](https://toolboxjs.com/grid/demos.md): Full-featured demo applications showcasing @toolbox-web/grid with 15+ plugins, custom editors, master-detail, and more. - [Architecture](https://toolboxjs.com/grid/architecture.md): Internal architecture of @toolbox-web/grid — configuration system, render scheduler, virtualization, plugin lifecycle, and light DOM design. - [API Reference](https://toolboxjs.com/grid/api-reference.md): Complete reference for the component — properties, methods, events, CSS custom properties, keyboard shortcuts, declarative configuration, and accessibility. - [Error & Warning Reference](https://toolboxjs.com/grid/errors.md): Complete reference for all diagnostic codes emitted by @toolbox-web/grid. Each code links to an explanation and resolution steps. - [Compared to Other Grids](https://toolboxjs.com/grid/comparison.md): How @toolbox-web/grid stacks up against AG Grid, Tabulator, and SlickGrid — features, bundle size, and a live performance benchmark you can run in your browser. - [Changelog](https://toolboxjs.com/grid/changelog.md): Release history for @toolbox-web/grid — features, fixes, and breaking changes by version. Curated automatically by release-please. - [Plugins Overview](https://toolboxjs.com/grid/plugins.md): Overview of all @toolbox-web/grid plugins — editing, selection, filtering, grouping, export, and more. Tree-shakeable, individually importable. ## Guides - [Accessibility](https://toolboxjs.com/grid/guides/accessibility.md): How @toolbox-web/grid implements WAI-ARIA grid patterns, keyboard navigation, screen reader support, and high contrast mode. - [Automated testing](https://toolboxjs.com/grid/guides/automated-testing.md): Write reliable Playwright, Cypress, and WebdriverIO tests against @toolbox-web/grid using its stable CSS classes, data attributes, ARIA roles, and ready() / 'render' event lifecycle hooks. - [Common Patterns](https://toolboxjs.com/grid/guides/common-patterns.md): Practical recipes for combining grid features. Covers data browsing, editable grids, master-detail, grouping, export, and more. - [Migrating from v1 to v2](https://toolboxjs.com/grid/guides/migration.md): Complete migration guide for upgrading @toolbox-web/grid and its framework adapters from v1 to v2. - [Multi-version coexistence](https://toolboxjs.com/grid/guides/multi-version.md): How @toolbox-web/grid lets two different grid versions live on one page — useful for micro-frontends and gradual upgrades. - [Performance](https://toolboxjs.com/grid/guides/performance.md): Optimize @toolbox-web/grid for large datasets — virtualization tuning, bundle optimization, rendering best practices, and benchmarks. - [Production Checklist](https://toolboxjs.com/grid/guides/production-checklist.md): A scannable pre-launch checklist for shipping @toolbox-web/grid to production. Each item links to the deep guide. - [Theming](https://toolboxjs.com/grid/guides/theming.md): Customize @toolbox-web/grid with CSS custom properties — colors, spacing, typography, dark mode, pre-built themes, and cascade layers. - [Troubleshooting](https://toolboxjs.com/grid/guides/troubleshooting.md): Solutions to common issues when working with @toolbox-web/grid — height and virtualization problems, performance tuning, plugin conflicts, and framework adapter development. ## Plugins - [Clipboard Plugin](https://toolboxjs.com/grid/plugins/clipboard.md): Copy and paste grid data with Excel-compatible clipboard support. - [Column Virtualization Plugin](https://toolboxjs.com/grid/plugins/column-virtualization.md): Improve performance for grids with many columns by only rendering visible columns. - [Context Menu Plugin](https://toolboxjs.com/grid/plugins/context-menu.md): Add right-click context menus to the grid with customizable items. - [Editing Plugin](https://toolboxjs.com/grid/plugins/editing.md): Enable inline cell editing with built-in and custom editors. - [Export Plugin](https://toolboxjs.com/grid/plugins/export.md): Export grid data to CSV or other formats. - [Filtering Plugin](https://toolboxjs.com/grid/plugins/filtering.md): Add column-level filtering with built-in filter panel and custom filters. - [Column Grouping Plugin](https://toolboxjs.com/grid/plugins/grouping-columns.md): Group columns visually under shared parent headers. - [Row Grouping Plugin](https://toolboxjs.com/grid/plugins/grouping-rows.md): Group rows by column values with expandable groups. - [Master-Detail Plugin](https://toolboxjs.com/grid/plugins/master-detail.md): Show expandable detail rows beneath data rows. - [Multi-Sort Plugin](https://toolboxjs.com/grid/plugins/multi-sort.md): Sort by multiple columns with shift-click support. - [Pinned Columns Plugin](https://toolboxjs.com/grid/plugins/pinned-columns.md): Pin columns to the left or right side of the grid. - [Pinned Rows (Status Bar) Plugin](https://toolboxjs.com/grid/plugins/pinned-rows.md): Pin summary or custom rows to the top or bottom of the grid. - [Pivot Table Plugin](https://toolboxjs.com/grid/plugins/pivot.md): Transform row data into a cross-tabulation (pivot table) layout. - [Print Plugin](https://toolboxjs.com/grid/plugins/print.md): Print the grid contents with configurable page settings. - [Column Reorder Plugin](https://toolboxjs.com/grid/plugins/reorder-columns.md): Allow users to reorder columns by drag and drop. - [Row Reorder Plugin (deprecated)](https://toolboxjs.com/grid/plugins/reorder-rows.md): Deprecated alias for the Row Drag-Drop plugin. - [Responsive Plugin](https://toolboxjs.com/grid/plugins/responsive.md): Automatically adapt the grid layout for different screen sizes. - [Row Drag-Drop Plugin](https://toolboxjs.com/grid/plugins/row-drag-drop.md): Drag rows within a single grid (reorder) and across grids that share a drop zone. - [Selection Plugin](https://toolboxjs.com/grid/plugins/selection.md): Cell, row, and range selection with full keyboard support, conditional selection, and checkbox mode. - [Server-Side Plugin](https://toolboxjs.com/grid/plugins/server-side.md): Connect the grid to server-side data sources with virtual scrolling. - [Shell Plugin](https://toolboxjs.com/grid/plugins/shell.md): Wrap the grid with a header bar (title + toolbar) and a collapsible tool-panel sidebar. - [Sticky Rows Plugin](https://toolboxjs.com/grid/plugins/sticky-rows.md): Pin selected data rows below the header as the user scrolls past them. - [Tooltip Plugin](https://toolboxjs.com/grid/plugins/tooltip.md): Display popover tooltips for truncated header and cell text, with per-column overrides. - [Tree Plugin](https://toolboxjs.com/grid/plugins/tree.md): Display hierarchical data as an expandable tree. - [Undo/Redo Plugin](https://toolboxjs.com/grid/plugins/undo-redo.md): Add undo/redo support for cell edits. - [Column Visibility Plugin](https://toolboxjs.com/grid/plugins/visibility.md): Allow users to toggle column visibility via a panel. ## Plugin Development - [Plugin Development](https://toolboxjs.com/grid/plugin-development.md): Build plugins that extend @toolbox-web/grid — lifecycle hooks, manifests, communication, feature registration, and bundling. - [Plugin Architecture](https://toolboxjs.com/grid/plugin-development/architecture.md): How the @toolbox-web/grid plugin system works internally — lifecycle, hooks, communication, manifests, validated properties, and the feature registry. - [Custom Plugins](https://toolboxjs.com/grid/plugin-development/custom-plugins.md): Build custom plugins for @toolbox-web/grid — lifecycle hooks, communication, queries, manifests, testing, and complete examples. ## Framework Adapters - [Framework Adapters](https://toolboxjs.com/grid/framework-adapters.md): How React, Angular, and Vue adapters let @toolbox-web/grid render framework-native components as cells, editors, and tool panels. - [Framework Adapter Architecture](https://toolboxjs.com/grid/framework-adapters/architecture.md): How the @toolbox-web/grid framework-adapter system intercepts grid rendering to mount React, Angular, and Vue components in cells, editors, and tool panels. ## Angular - [Base Classes for Editors & Filter Panels](https://toolboxjs.com/grid/angular/base-classes.md): BaseGridEditor, BaseGridEditorCVA, BaseOverlayEditor, and BaseFilterPanel — reusable base classes for custom Angular editors and filter panels. - [Changelog](https://toolboxjs.com/grid/angular/changelog.md): Release history for @toolbox-web/grid-angular — features, fixes, and breaking changes by version. Curated automatically by release-please. - [Angular Integration](https://toolboxjs.com/grid/angular/getting-started.md): Install and configure @toolbox-web/grid-angular — feature inputs, renderers, editors, events, inject functions, and Angular-specific patterns. - [Reactive Forms Integration](https://toolboxjs.com/grid/angular/reactive-forms.md): Bind @toolbox-web/grid to Angular FormArray — cell-level validation, dirty tracking, lazy form binding, and automatic validation styling. ## React - [Changelog](https://toolboxjs.com/grid/react/changelog.md): Release history for @toolbox-web/grid-react — features, fixes, and breaking changes by version. Curated automatically by release-please. - [React Integration](https://toolboxjs.com/grid/react/getting-started.md): Install and configure @toolbox-web/grid-react — feature props, JSX renderers, editors, hooks, and event handling. ## Vue - [Changelog](https://toolboxjs.com/grid/vue/changelog.md): Release history for @toolbox-web/grid-vue — features, fixes, and breaking changes by version. Curated automatically by release-please. - [Vue Integration](https://toolboxjs.com/grid/vue/getting-started.md): Install and configure @toolbox-web/grid-vue — feature props, slot renderers, editors, composables, and event handling. ## API Reference Complete, generated TypeDoc reference. Every symbol has a plain-markdown companion (the `.md` links below). ### Core - [A11yConfig](https://toolboxjs.com/grid/api/core/interfaces/a11yconfig.md) - [A11yMessages](https://toolboxjs.com/grid/api/core/interfaces/a11ymessages.md) - [AggregatorRef](https://toolboxjs.com/grid/api/core/types/aggregatorref.md) - [AnimationConfig](https://toolboxjs.com/grid/api/core/interfaces/animationconfig.md) - [AnimationMode](https://toolboxjs.com/grid/api/core/types/animationmode.md) - [AnimationStyle](https://toolboxjs.com/grid/api/core/types/animationstyle.md) - [BaseColumnConfig](https://toolboxjs.com/grid/api/core/interfaces/basecolumnconfig.md) - [builtInSort](https://toolboxjs.com/grid/api/core/functions/builtinsort.md) - [CellActivateDetail](https://toolboxjs.com/grid/api/core/interfaces/cellactivatedetail.md) - [CellActivateTrigger](https://toolboxjs.com/grid/api/core/types/cellactivatetrigger.md) - [CellChangeDetail](https://toolboxjs.com/grid/api/core/interfaces/cellchangedetail.md) - [CellClickDetail](https://toolboxjs.com/grid/api/core/interfaces/cellclickdetail.md) - [CellRenderContext](https://toolboxjs.com/grid/api/core/interfaces/cellrendercontext.md) - [ColumnConfig](https://toolboxjs.com/grid/api/core/interfaces/columnconfig.md) - [ColumnConfigMap](https://toolboxjs.com/grid/api/core/types/columnconfigmap.md) - [ColumnEditorContext](https://toolboxjs.com/grid/api/core/interfaces/columneditorcontext.md) - [ColumnEditorSpec](https://toolboxjs.com/grid/api/core/types/columneditorspec.md) - [ColumnResizeDetail](https://toolboxjs.com/grid/api/core/interfaces/columnresizedetail.md) - [ColumnResizeResetDetail](https://toolboxjs.com/grid/api/core/interfaces/columnresizeresetdetail.md) - [ColumnSortState](https://toolboxjs.com/grid/api/core/interfaces/columnsortstate.md) - [ColumnState](https://toolboxjs.com/grid/api/core/interfaces/columnstate.md) - [ColumnType](https://toolboxjs.com/grid/api/core/types/columntype.md) - [ColumnViewRenderer](https://toolboxjs.com/grid/api/core/types/columnviewrenderer.md) - [createGrid](https://toolboxjs.com/grid/api/core/functions/creategrid.md) - [DataChangeDetail](https://toolboxjs.com/grid/api/core/interfaces/datachangedetail.md) - [DataGridCustomEvent](https://toolboxjs.com/grid/api/core/types/datagridcustomevent.md) - [DataGridElement](https://toolboxjs.com/grid/api/core/classes/datagridelement.md) - [DataGridEventMap](https://toolboxjs.com/grid/api/core/interfaces/datagrideventmap.md) - [defaultComparator](https://toolboxjs.com/grid/api/core/functions/defaultcomparator.md) - [DGEventName](https://toolboxjs.com/grid/api/core/types/dgeventname.md) - [EmptyContext](https://toolboxjs.com/grid/api/core/interfaces/emptycontext.md) - [EmptyOverlay](https://toolboxjs.com/grid/api/core/types/emptyoverlay.md) - [EmptyRenderer](https://toolboxjs.com/grid/api/core/types/emptyrenderer.md) - [ExpandCollapseAnimation](https://toolboxjs.com/grid/api/core/types/expandcollapseanimation.md) - [FeatureConfig](https://toolboxjs.com/grid/api/core/interfaces/featureconfig.md) - [FitMode](https://toolboxjs.com/grid/api/core/types/fitmode.md) - [GridColumnState](https://toolboxjs.com/grid/api/core/interfaces/gridcolumnstate.md) - [GridConfig](https://toolboxjs.com/grid/api/core/interfaces/gridconfig.md) - [GridIcons](https://toolboxjs.com/grid/api/core/interfaces/gridicons.md) - [HeaderCellContext](https://toolboxjs.com/grid/api/core/interfaces/headercellcontext.md) - [HeaderContentDefinition](https://toolboxjs.com/grid/api/core/types/headercontentdefinition.md) - [HeaderLabelContext](https://toolboxjs.com/grid/api/core/interfaces/headerlabelcontext.md) - [HeaderLabelRenderer](https://toolboxjs.com/grid/api/core/types/headerlabelrenderer.md) - [HeaderRenderer](https://toolboxjs.com/grid/api/core/types/headerrenderer.md) - [IconValue](https://toolboxjs.com/grid/api/core/types/iconvalue.md) - [InferredColumnResult](https://toolboxjs.com/grid/api/core/interfaces/inferredcolumnresult.md) - [invalidateAccessorCache](https://toolboxjs.com/grid/api/core/functions/invalidateaccessorcache.md) - [LoadingContext](https://toolboxjs.com/grid/api/core/interfaces/loadingcontext.md) - [LoadingRenderer](https://toolboxjs.com/grid/api/core/types/loadingrenderer.md) - [LoadingSize](https://toolboxjs.com/grid/api/core/types/loadingsize.md) - [PluginEventName](https://toolboxjs.com/grid/api/core/types/plugineventname.md) - [PrimitiveColumnType](https://toolboxjs.com/grid/api/core/types/primitivecolumntype.md) - [PublicGrid](https://toolboxjs.com/grid/api/core/interfaces/publicgrid.md) - [queryGrid](https://toolboxjs.com/grid/api/core/functions/querygrid.md) - [RenderDetail](https://toolboxjs.com/grid/api/core/interfaces/renderdetail.md) - [resolveCellValue](https://toolboxjs.com/grid/api/core/functions/resolvecellvalue.md) - [RowAnimationType](https://toolboxjs.com/grid/api/core/types/rowanimationtype.md) - [RowClickDetail](https://toolboxjs.com/grid/api/core/interfaces/rowclickdetail.md) - [RowGroupRenderConfig](https://toolboxjs.com/grid/api/core/interfaces/rowgrouprenderconfig.md) - [RowTransaction](https://toolboxjs.com/grid/api/core/interfaces/rowtransaction.md) - [RowUpdate](https://toolboxjs.com/grid/api/core/interfaces/rowupdate.md) - [ScrollToRowOptions](https://toolboxjs.com/grid/api/core/interfaces/scrolltorowoptions.md) - [ShellConfig](https://toolboxjs.com/grid/api/core/types/shellconfig.md) - [ShellHeaderConfig](https://toolboxjs.com/grid/api/core/types/shellheaderconfig.md) - [SortChangeDetail](https://toolboxjs.com/grid/api/core/interfaces/sortchangedetail.md) - [SortHandler](https://toolboxjs.com/grid/api/core/types/sorthandler.md) - [SortState](https://toolboxjs.com/grid/api/core/interfaces/sortstate.md) - [TbwScrollDetail](https://toolboxjs.com/grid/api/core/interfaces/tbwscrolldetail.md) - [ToolbarContentDefinition](https://toolboxjs.com/grid/api/core/types/toolbarcontentdefinition.md) - [ToolPanelConfig](https://toolboxjs.com/grid/api/core/types/toolpanelconfig.md) - [ToolPanelDefinition](https://toolboxjs.com/grid/api/core/types/toolpaneldefinition.md) - [TransactionResult](https://toolboxjs.com/grid/api/core/interfaces/transactionresult.md) - [TypeDefault](https://toolboxjs.com/grid/api/core/interfaces/typedefault.md) - [UpdateSource](https://toolboxjs.com/grid/api/core/types/updatesource.md) ### Plugins - [AggFunc](https://toolboxjs.com/grid/plugins/pivot/types/aggfunc.md) - [AggregationRowConfig](https://toolboxjs.com/grid/plugins/pinned-rows/interfaces/aggregationrowconfig.md) - [AggregationSlot](https://toolboxjs.com/grid/plugins/pinned-rows/types/aggregationslot.md) - [AggregatorConfig](https://toolboxjs.com/grid/plugins/pinned-rows/interfaces/aggregatorconfig.md) - [AggregatorDefinition](https://toolboxjs.com/grid/plugins/pinned-rows/types/aggregatordefinition.md) - [AggregatorFormatter](https://toolboxjs.com/grid/plugins/pinned-rows/types/aggregatorformatter.md) - [AggregatorMap](https://toolboxjs.com/grid/plugins/grouping-rows/types/aggregatormap.md) - [BaselinesCapturedDetail](https://toolboxjs.com/grid/plugins/editing/interfaces/baselinescaptureddetail.md) - [BeforeEditCloseDetail](https://toolboxjs.com/grid/plugins/editing/interfaces/beforeeditclosedetail.md) - [BlankMode](https://toolboxjs.com/grid/plugins/filtering/types/blankmode.md) - [BreakpointConfig](https://toolboxjs.com/grid/plugins/responsive/interfaces/breakpointconfig.md) - [CellCancelDetail](https://toolboxjs.com/grid/plugins/editing/interfaces/cellcanceldetail.md) - [CellCommitDetail](https://toolboxjs.com/grid/plugins/editing/interfaces/cellcommitdetail.md) - [CellRange](https://toolboxjs.com/grid/plugins/selection/interfaces/cellrange.md) - [ChangedRowsResetDetail](https://toolboxjs.com/grid/plugins/editing/interfaces/changedrowsresetdetail.md) - [ClipboardConfig](https://toolboxjs.com/grid/plugins/clipboard/interfaces/clipboardconfig.md) - [ClipboardPlugin](https://toolboxjs.com/grid/plugins/clipboard/classes/clipboardplugin.md) - [ColumnGroup](https://toolboxjs.com/grid/plugins/grouping-columns/interfaces/columngroup.md) - [ColumnGroupDefinition](https://toolboxjs.com/grid/plugins/grouping-columns/interfaces/columngroupdefinition.md) - [ColumnGroupInfo](https://toolboxjs.com/grid/plugins/visibility/interfaces/columngroupinfo.md) - [ColumnMoveDetail](https://toolboxjs.com/grid/plugins/reorder-columns/interfaces/columnmovedetail.md) - [ColumnReorderRequestDetail](https://toolboxjs.com/grid/plugins/visibility/interfaces/columnreorderrequestdetail.md) - [ColumnVirtualizationConfig](https://toolboxjs.com/grid/plugins/column-virtualization/interfaces/columnvirtualizationconfig.md) - [ColumnVirtualizationPlugin](https://toolboxjs.com/grid/plugins/column-virtualization/classes/columnvirtualizationplugin.md) - [ColumnVisibilityDetail](https://toolboxjs.com/grid/plugins/visibility/interfaces/columnvisibilitydetail.md) - [CompoundEditAction](https://toolboxjs.com/grid/plugins/undo-redo/interfaces/compoundeditaction.md) - [ContextMenuConfig](https://toolboxjs.com/grid/plugins/context-menu/interfaces/contextmenuconfig.md) - [ContextMenuItem](https://toolboxjs.com/grid/plugins/context-menu/interfaces/contextmenuitem.md) - [ContextMenuOpenDetail](https://toolboxjs.com/grid/plugins/context-menu/interfaces/contextmenuopendetail.md) - [ContextMenuParams](https://toolboxjs.com/grid/plugins/context-menu/interfaces/contextmenuparams.md) - [ContextMenuPlugin](https://toolboxjs.com/grid/plugins/context-menu/classes/contextmenuplugin.md) - [CopyDetail](https://toolboxjs.com/grid/plugins/clipboard/interfaces/copydetail.md) - [CopyOptions](https://toolboxjs.com/grid/plugins/clipboard/interfaces/copyoptions.md) - [CsvOptions](https://toolboxjs.com/grid/plugins/export/interfaces/csvoptions.md) - [CustomAggFunc](https://toolboxjs.com/grid/plugins/pivot/types/customaggfunc.md) - [DataRequestModel](https://toolboxjs.com/grid/plugins/server-side/interfaces/datarequestmodel.md) - [DataRowModelItem](https://toolboxjs.com/grid/plugins/grouping-rows/interfaces/datarowmodelitem.md) - [DataSourceChildrenDetail](https://toolboxjs.com/grid/plugins/server-side/interfaces/datasourcechildrendetail.md) - [DataSourceDataDetail](https://toolboxjs.com/grid/plugins/server-side/interfaces/datasourcedatadetail.md) - [DataSourceErrorDetail](https://toolboxjs.com/grid/plugins/server-side/interfaces/datasourceerrordetail.md) - [DataSourceLoadingDetail](https://toolboxjs.com/grid/plugins/server-side/interfaces/datasourceloadingdetail.md) - [DateEditorParams](https://toolboxjs.com/grid/plugins/editing/interfaces/dateeditorparams.md) - [defaultEditorFor](https://toolboxjs.com/grid/plugins/editing/functions/defaulteditorfor.md) - [DefaultExpandedValue](https://toolboxjs.com/grid/plugins/grouping-rows/types/defaultexpandedvalue.md) - [defaultPasteHandler](https://toolboxjs.com/grid/plugins/clipboard/functions/defaultpastehandler.md) - [DetailExpandDetail](https://toolboxjs.com/grid/plugins/master-detail/interfaces/detailexpanddetail.md) - [DirtyChangeDetail](https://toolboxjs.com/grid/plugins/editing/interfaces/dirtychangedetail.md) - [DirtyRowEntry](https://toolboxjs.com/grid/plugins/editing/interfaces/dirtyrowentry.md) - [EditAction](https://toolboxjs.com/grid/plugins/undo-redo/interfaces/editaction.md) - [EditCloseDetail](https://toolboxjs.com/grid/plugins/editing/interfaces/editclosedetail.md) - [EditingConfig](https://toolboxjs.com/grid/plugins/editing/interfaces/editingconfig.md) - [EditingPlugin](https://toolboxjs.com/grid/plugins/editing/classes/editingplugin.md) - [EditOpenDetail](https://toolboxjs.com/grid/plugins/editing/interfaces/editopendetail.md) - [EditorParams](https://toolboxjs.com/grid/plugins/editing/types/editorparams.md) - [ExcelBorder](https://toolboxjs.com/grid/plugins/export/interfaces/excelborder.md) - [ExcelCellStyle](https://toolboxjs.com/grid/plugins/export/interfaces/excelcellstyle.md) - [ExcelStyleConfig](https://toolboxjs.com/grid/plugins/export/interfaces/excelstyleconfig.md) - [ExportCompleteDetail](https://toolboxjs.com/grid/plugins/export/interfaces/exportcompletedetail.md) - [ExportConfig](https://toolboxjs.com/grid/plugins/export/interfaces/exportconfig.md) - [ExportFormat](https://toolboxjs.com/grid/plugins/export/types/exportformat.md) - [ExportMode](https://toolboxjs.com/grid/plugins/export/types/exportmode.md) - [ExportParams](https://toolboxjs.com/grid/plugins/export/interfaces/exportparams.md) - [ExportPlugin](https://toolboxjs.com/grid/plugins/export/classes/exportplugin.md) - [FetchChildrenQuery](https://toolboxjs.com/grid/plugins/server-side/interfaces/fetchchildrenquery.md) - [FilterChangeDetail](https://toolboxjs.com/grid/plugins/filtering/interfaces/filterchangedetail.md) - [FilterConfig](https://toolboxjs.com/grid/plugins/filtering/interfaces/filterconfig.md) - [filteredCountPanel](https://toolboxjs.com/grid/plugins/pinned-rows/functions/filteredcountpanel.md) - [FilterHandler](https://toolboxjs.com/grid/plugins/filtering/types/filterhandler.md) - [FilteringPlugin](https://toolboxjs.com/grid/plugins/filtering/classes/filteringplugin.md) - [FilterModel](https://toolboxjs.com/grid/plugins/filtering/interfaces/filtermodel.md) - [FilterOperator](https://toolboxjs.com/grid/plugins/filtering/types/filteroperator.md) - [FilterPanelParams](https://toolboxjs.com/grid/plugins/filtering/interfaces/filterpanelparams.md) - [FilterPanelRenderer](https://toolboxjs.com/grid/plugins/filtering/types/filterpanelrenderer.md) - [FilterParams](https://toolboxjs.com/grid/plugins/filtering/interfaces/filterparams.md) - [FilterType](https://toolboxjs.com/grid/plugins/filtering/types/filtertype.md) - [FilterValuesHandler](https://toolboxjs.com/grid/plugins/filtering/types/filtervalueshandler.md) - [FlattenedTreeRow](https://toolboxjs.com/grid/plugins/tree/interfaces/flattenedtreerow.md) - [FormatCsvParams](https://toolboxjs.com/grid/plugins/export/types/formatcsvparams.md) - [FormatExcelParams](https://toolboxjs.com/grid/plugins/export/types/formatexcelparams.md) - [GetChildRowsParams](https://toolboxjs.com/grid/plugins/server-side/interfaces/getchildrowsparams.md) - [GetChildRowsResult](https://toolboxjs.com/grid/plugins/server-side/interfaces/getchildrowsresult.md) - [GetRowsParams](https://toolboxjs.com/grid/plugins/server-side/interfaces/getrowsparams.md) - [GetRowsResult](https://toolboxjs.com/grid/plugins/server-side/interfaces/getrowsresult.md) - [GroupCollapseDetail](https://toolboxjs.com/grid/plugins/grouping-rows/interfaces/groupcollapsedetail.md) - [GroupDefinition](https://toolboxjs.com/grid/plugins/grouping-rows/interfaces/groupdefinition.md) - [GroupExpandDetail](https://toolboxjs.com/grid/plugins/grouping-rows/interfaces/groupexpanddetail.md) - [GroupHeaderRenderParams](https://toolboxjs.com/grid/plugins/grouping-columns/interfaces/groupheaderrenderparams.md) - [GroupingColumnsConfig](https://toolboxjs.com/grid/plugins/grouping-columns/interfaces/groupingcolumnsconfig.md) - [GroupingColumnsPlugin](https://toolboxjs.com/grid/plugins/grouping-columns/classes/groupingcolumnsplugin.md) - [GroupingRowsConfig](https://toolboxjs.com/grid/plugins/grouping-rows/interfaces/groupingrowsconfig.md) - [GroupingRowsPlugin](https://toolboxjs.com/grid/plugins/grouping-rows/classes/groupingrowsplugin.md) - [GroupRowModelItem](https://toolboxjs.com/grid/plugins/grouping-rows/interfaces/grouprowmodelitem.md) - [GroupRowRenderParams](https://toolboxjs.com/grid/plugins/grouping-rows/interfaces/grouprowrenderparams.md) - [GroupState](https://toolboxjs.com/grid/plugins/grouping-rows/interfaces/groupstate.md) - [GroupToggleDetail](https://toolboxjs.com/grid/plugins/grouping-rows/interfaces/grouptoggledetail.md) - [HeaderContentDefinition](https://toolboxjs.com/grid/plugins/shell/interfaces/headercontentdefinition.md) - [HeaderContextMenuItem](https://toolboxjs.com/grid/plugins/context-menu/interfaces/headercontextmenuitem.md) - [HiddenColumnConfig](https://toolboxjs.com/grid/plugins/responsive/types/hiddencolumnconfig.md) - [MasterDetailConfig](https://toolboxjs.com/grid/plugins/master-detail/interfaces/masterdetailconfig.md) - [MasterDetailPlugin](https://toolboxjs.com/grid/plugins/master-detail/classes/masterdetailplugin.md) - [MultiSortChangeDetail](https://toolboxjs.com/grid/plugins/multi-sort/interfaces/multisortchangedetail.md) - [MultiSortConfig](https://toolboxjs.com/grid/plugins/multi-sort/interfaces/multisortconfig.md) - [MultiSortPlugin](https://toolboxjs.com/grid/plugins/multi-sort/classes/multisortplugin.md) - [NumberEditorParams](https://toolboxjs.com/grid/plugins/editing/interfaces/numbereditorparams.md) - [OpenToolPanelOptions](https://toolboxjs.com/grid/plugins/shell/interfaces/opentoolpaneloptions.md) - [PanelRender](https://toolboxjs.com/grid/plugins/pinned-rows/types/panelrender.md) - [PanelSlot](https://toolboxjs.com/grid/plugins/pinned-rows/interfaces/panelslot.md) - [PanelZone](https://toolboxjs.com/grid/plugins/pinned-rows/types/panelzone.md) - [PasteDetail](https://toolboxjs.com/grid/plugins/clipboard/interfaces/pastedetail.md) - [PasteHandler](https://toolboxjs.com/grid/plugins/clipboard/types/pastehandler.md) - [PasteTarget](https://toolboxjs.com/grid/plugins/clipboard/interfaces/pastetarget.md) - [PinnedColumnsConfig](https://toolboxjs.com/grid/plugins/pinned-columns/interfaces/pinnedcolumnsconfig.md) - [PinnedColumnsPlugin](https://toolboxjs.com/grid/plugins/pinned-columns/classes/pinnedcolumnsplugin.md) - [PinnedPosition](https://toolboxjs.com/grid/plugins/pinned-columns/types/pinnedposition.md) - [PinnedRowsConfig](https://toolboxjs.com/grid/plugins/pinned-rows/interfaces/pinnedrowsconfig.md) - [PinnedRowsContext](https://toolboxjs.com/grid/plugins/pinned-rows/interfaces/pinnedrowscontext.md) - [PinnedRowSlot](https://toolboxjs.com/grid/plugins/pinned-rows/types/pinnedrowslot.md) - [PinnedRowsPanel](https://toolboxjs.com/grid/plugins/pinned-rows/interfaces/pinnedrowspanel.md) - [PinnedRowsPlugin](https://toolboxjs.com/grid/plugins/pinned-rows/classes/pinnedrowsplugin.md) - [PinnedRowsPosition](https://toolboxjs.com/grid/plugins/pinned-rows/types/pinnedrowsposition.md) - [PivotConfig](https://toolboxjs.com/grid/plugins/pivot/interfaces/pivotconfig.md) - [PivotConfigChangeDetail](https://toolboxjs.com/grid/plugins/pivot/interfaces/pivotconfigchangedetail.md) - [PivotDataRow](https://toolboxjs.com/grid/plugins/pivot/types/pivotdatarow.md) - [PivotDefaultExpandedValue](https://toolboxjs.com/grid/plugins/pivot/types/pivotdefaultexpandedvalue.md) - [PivotPlugin](https://toolboxjs.com/grid/plugins/pivot/classes/pivotplugin.md) - [PivotResult](https://toolboxjs.com/grid/plugins/pivot/interfaces/pivotresult.md) - [PivotRow](https://toolboxjs.com/grid/plugins/pivot/interfaces/pivotrow.md) - [PivotSortConfig](https://toolboxjs.com/grid/plugins/pivot/interfaces/pivotsortconfig.md) - [PivotSortDir](https://toolboxjs.com/grid/plugins/pivot/types/pivotsortdir.md) - [PivotStateChangeDetail](https://toolboxjs.com/grid/plugins/pivot/interfaces/pivotstatechangedetail.md) - [PivotToggleDetail](https://toolboxjs.com/grid/plugins/pivot/interfaces/pivottoggledetail.md) - [PivotValueDisplayMode](https://toolboxjs.com/grid/plugins/pivot/types/pivotvaluedisplaymode.md) - [PivotValueField](https://toolboxjs.com/grid/plugins/pivot/interfaces/pivotvaluefield.md) - [PrintCompleteDetail](https://toolboxjs.com/grid/plugins/print/interfaces/printcompletedetail.md) - [PrintConfig](https://toolboxjs.com/grid/plugins/print/interfaces/printconfig.md) - [printGridIsolated](https://toolboxjs.com/grid/plugins/print/functions/printgridisolated.md) - [PrintIsolatedOptions](https://toolboxjs.com/grid/plugins/print/interfaces/printisolatedoptions.md) - [PrintOrientation](https://toolboxjs.com/grid/plugins/print/types/printorientation.md) - [PrintParams](https://toolboxjs.com/grid/plugins/print/interfaces/printparams.md) - [PrintPlugin](https://toolboxjs.com/grid/plugins/print/classes/printplugin.md) - [PrintStartDetail](https://toolboxjs.com/grid/plugins/print/interfaces/printstartdetail.md) - [RenderRow](https://toolboxjs.com/grid/plugins/grouping-rows/types/renderrow.md) - [ReorderAnimation](https://toolboxjs.com/grid/plugins/reorder-columns/types/reorderanimation.md) - [ReorderConfig](https://toolboxjs.com/grid/plugins/reorder-columns/interfaces/reorderconfig.md) - [ReorderPlugin](https://toolboxjs.com/grid/plugins/reorder-columns/classes/reorderplugin.md) - [ResponsiveChangeDetail](https://toolboxjs.com/grid/plugins/responsive/interfaces/responsivechangedetail.md) - [ResponsivePlugin](https://toolboxjs.com/grid/plugins/responsive/classes/responsiveplugin.md) - [ResponsivePluginConfig](https://toolboxjs.com/grid/plugins/responsive/interfaces/responsivepluginconfig.md) - [RowCommitDetail](https://toolboxjs.com/grid/plugins/editing/interfaces/rowcommitdetail.md) - [rowCountPanel](https://toolboxjs.com/grid/plugins/pinned-rows/functions/rowcountpanel.md) - [RowDragDropConfig](https://toolboxjs.com/grid/plugins/row-drag-drop/interfaces/rowdragdropconfig.md) - [RowDragEndDetail](https://toolboxjs.com/grid/plugins/row-drag-drop/interfaces/rowdragenddetail.md) - [RowDragPayload](https://toolboxjs.com/grid/plugins/row-drag-drop/interfaces/rowdragpayload.md) - [RowDragStartDetail](https://toolboxjs.com/grid/plugins/row-drag-drop/interfaces/rowdragstartdetail.md) - [RowDropDetail](https://toolboxjs.com/grid/plugins/row-drag-drop/interfaces/rowdropdetail.md) - [RowMoveDetail](https://toolboxjs.com/grid/plugins/row-drag-drop/interfaces/rowmovedetail.md) - [RowReorderConfig](https://toolboxjs.com/grid/plugins/reorder-rows/types/rowreorderconfig.md) - [RowReorderPlugin](https://toolboxjs.com/grid/plugins/reorder-rows/classes/rowreorderplugin.md) - [RowTransferDetail](https://toolboxjs.com/grid/plugins/row-drag-drop/interfaces/rowtransferdetail.md) - [SelectableCallback](https://toolboxjs.com/grid/plugins/selection/types/selectablecallback.md) - [selectedCountPanel](https://toolboxjs.com/grid/plugins/pinned-rows/functions/selectedcountpanel.md) - [SelectEditorParams](https://toolboxjs.com/grid/plugins/editing/interfaces/selecteditorparams.md) - [SelectionAxis](https://toolboxjs.com/grid/plugins/selection/types/selectionaxis.md) - [SelectionChangeDetail](https://toolboxjs.com/grid/plugins/selection/interfaces/selectionchangedetail.md) - [SelectionConfig](https://toolboxjs.com/grid/plugins/selection/interfaces/selectionconfig.md) - [SelectionMode](https://toolboxjs.com/grid/plugins/selection/types/selectionmode.md) - [SelectionPlugin](https://toolboxjs.com/grid/plugins/selection/classes/selectionplugin.md) - [SelectionResult](https://toolboxjs.com/grid/plugins/selection/interfaces/selectionresult.md) - [SelectionTrigger](https://toolboxjs.com/grid/plugins/selection/types/selectiontrigger.md) - [ServerSideConfig](https://toolboxjs.com/grid/plugins/server-side/interfaces/serversideconfig.md) - [ServerSideDataSource](https://toolboxjs.com/grid/plugins/server-side/interfaces/serversidedatasource.md) - [ServerSidePlugin](https://toolboxjs.com/grid/plugins/server-side/classes/serversideplugin.md) - [ShellConfig](https://toolboxjs.com/grid/plugins/shell/interfaces/shellconfig.md) - [ShellHeaderConfig](https://toolboxjs.com/grid/plugins/shell/interfaces/shellheaderconfig.md) - [ShellPlugin](https://toolboxjs.com/grid/plugins/shell/classes/shellplugin.md) - [SortModel](https://toolboxjs.com/grid/plugins/multi-sort/interfaces/sortmodel.md) - [StickyPredicate](https://toolboxjs.com/grid/plugins/sticky-rows/types/stickypredicate.md) - [StickyRowsConfig](https://toolboxjs.com/grid/plugins/sticky-rows/interfaces/stickyrowsconfig.md) - [StickyRowsMode](https://toolboxjs.com/grid/plugins/sticky-rows/types/stickyrowsmode.md) - [StickyRowsPlugin](https://toolboxjs.com/grid/plugins/sticky-rows/classes/stickyrowsplugin.md) - [Subscribable](https://toolboxjs.com/grid/plugins/server-side/interfaces/subscribable.md) - [TextEditorParams](https://toolboxjs.com/grid/plugins/editing/interfaces/texteditorparams.md) - [ToolbarContentDefinition](https://toolboxjs.com/grid/plugins/shell/interfaces/toolbarcontentdefinition.md) - [ToolPanelConfig](https://toolboxjs.com/grid/plugins/shell/interfaces/toolpanelconfig.md) - [ToolPanelDefinition](https://toolboxjs.com/grid/plugins/shell/interfaces/toolpaneldefinition.md) - [TooltipConfig](https://toolboxjs.com/grid/plugins/tooltip/interfaces/tooltipconfig.md) - [TooltipPlugin](https://toolboxjs.com/grid/plugins/tooltip/classes/tooltipplugin.md) - [TreeConfig](https://toolboxjs.com/grid/plugins/tree/interfaces/treeconfig.md) - [TreeExpandDetail](https://toolboxjs.com/grid/plugins/tree/interfaces/treeexpanddetail.md) - [TreePlugin](https://toolboxjs.com/grid/plugins/tree/classes/treeplugin.md) - [TreeRow](https://toolboxjs.com/grid/plugins/tree/types/treerow.md) - [UndoRedoAction](https://toolboxjs.com/grid/plugins/undo-redo/types/undoredoaction.md) - [UndoRedoConfig](https://toolboxjs.com/grid/plugins/undo-redo/interfaces/undoredoconfig.md) - [UndoRedoDetail](https://toolboxjs.com/grid/plugins/undo-redo/interfaces/undoredodetail.md) - [UndoRedoPlugin](https://toolboxjs.com/grid/plugins/undo-redo/classes/undoredoplugin.md) - [ViewportMappingQuery](https://toolboxjs.com/grid/plugins/server-side/interfaces/viewportmappingquery.md) - [ViewportMappingResponse](https://toolboxjs.com/grid/plugins/server-side/interfaces/viewportmappingresponse.md) - [VisibilityConfig](https://toolboxjs.com/grid/plugins/visibility/interfaces/visibilityconfig.md) - [VisibilityPlugin](https://toolboxjs.com/grid/plugins/visibility/classes/visibilityplugin.md) - [ZonedPanelRender](https://toolboxjs.com/grid/plugins/pinned-rows/interfaces/zonedpanelrender.md) ### Plugin Development - [AfterCellRenderContext](https://toolboxjs.com/grid/api/plugin-development/interfaces/aftercellrendercontext.md) - [AfterRowRenderContext](https://toolboxjs.com/grid/api/plugin-development/interfaces/afterrowrendercontext.md) - [BaseGridPlugin](https://toolboxjs.com/grid/api/plugin-development/classes/basegridplugin.md) - [CellContext](https://toolboxjs.com/grid/api/plugin-development/interfaces/cellcontext.md) - [CellMouseEvent](https://toolboxjs.com/grid/api/plugin-development/interfaces/cellmouseevent.md) - [CollectHeaderRowsContext](https://toolboxjs.com/grid/api/plugin-development/interfaces/collectheaderrowscontext.md) - [computeScrollMapping](https://toolboxjs.com/grid/api/plugin-development/functions/computescrollmapping.md) - [DataGridElement (Plugin API)](https://toolboxjs.com/grid/api/plugin-development/classes/datagridelement-pluginapi.md) - [EditorExecContext](https://toolboxjs.com/grid/api/plugin-development/interfaces/editorexeccontext.md) - [EvalContext](https://toolboxjs.com/grid/api/plugin-development/interfaces/evalcontext.md) - [EventDefinition](https://toolboxjs.com/grid/api/plugin-development/interfaces/eventdefinition.md) - [fromVirtualScrollTop](https://toolboxjs.com/grid/api/plugin-development/functions/fromvirtualscrolltop.md) - [GridClassName](https://toolboxjs.com/grid/api/plugin-development/types/gridclassname.md) - [GridCSSVar](https://toolboxjs.com/grid/api/plugin-development/types/gridcssvar.md) - [GridDataAttr](https://toolboxjs.com/grid/api/plugin-development/types/griddataattr.md) - [GridPlugin](https://toolboxjs.com/grid/api/plugin-development/interfaces/gridplugin.md) - [HeaderRowCell](https://toolboxjs.com/grid/api/plugin-development/interfaces/headerrowcell.md) - [HeaderRowContribution](https://toolboxjs.com/grid/api/plugin-development/interfaces/headerrowcontribution.md) - [InternalGrid](https://toolboxjs.com/grid/api/plugin-development/interfaces/internalgrid.md) - [PluginDependency](https://toolboxjs.com/grid/api/plugin-development/interfaces/plugindependency.md) - [PluginManifest](https://toolboxjs.com/grid/api/plugin-development/interfaces/pluginmanifest.md) - [PluginQuery](https://toolboxjs.com/grid/api/plugin-development/interfaces/pluginquery.md) - [QueryDefinition](https://toolboxjs.com/grid/api/plugin-development/interfaces/querydefinition.md) - [RenderPhase](https://toolboxjs.com/grid/api/plugin-development/types/renderphase.md) - [ResizeController](https://toolboxjs.com/grid/api/plugin-development/interfaces/resizecontroller.md) - [ScrollMapping](https://toolboxjs.com/grid/api/plugin-development/interfaces/scrollmapping.md) - [toVirtualScrollTop](https://toolboxjs.com/grid/api/plugin-development/functions/tovirtualscrolltop.md) - [VirtualState](https://toolboxjs.com/grid/api/plugin-development/interfaces/virtualstate.md) ### Framework Adapters - [DataGridElement (Framework Adapters)](https://toolboxjs.com/grid/api/framework-adapters/classes/datagridelement-adapters.md) - [ExternalMountEditorDetail](https://toolboxjs.com/grid/api/framework-adapters/interfaces/externalmounteditordetail.md) - [ExternalMountViewDetail](https://toolboxjs.com/grid/api/framework-adapters/interfaces/externalmountviewdetail.md) - [FrameworkAdapter](https://toolboxjs.com/grid/api/framework-adapters/interfaces/frameworkadapter.md) ### Angular Adapter - [AngularColumnGroupDefinition](https://toolboxjs.com/grid/angular/api/types/angularcolumngroupdefinition.md) - [AngularGroupingColumnsConfig](https://toolboxjs.com/grid/angular/api/types/angulargroupingcolumnsconfig.md) - [AngularGroupingRowsConfig](https://toolboxjs.com/grid/angular/api/types/angulargroupingrowsconfig.md) - [AngularPanelRender](https://toolboxjs.com/grid/angular/api/types/angularpanelrender.md) - [AngularPanelSlot](https://toolboxjs.com/grid/angular/api/types/angularpanelslot.md) - [AngularPinnedRowsConfig](https://toolboxjs.com/grid/angular/api/types/angularpinnedrowsconfig.md) - [AngularPinnedRowSlot](https://toolboxjs.com/grid/angular/api/types/angularpinnedrowslot.md) - [AngularZonedPanelRender](https://toolboxjs.com/grid/angular/api/types/angularzonedpanelrender.md) - [applyColumnDefaults](https://toolboxjs.com/grid/angular/api/utilities/applycolumndefaults.md) - [BaseFilterPanel](https://toolboxjs.com/grid/angular/api/utilities/basefilterpanel.md) - [BaseGridEditor](https://toolboxjs.com/grid/angular/api/utilities/basegrideditor.md) - [BaseGridEditorCVA](https://toolboxjs.com/grid/angular/api/utilities/basegrideditorcva.md) - [BaseOverlayEditor](https://toolboxjs.com/grid/angular/api/utilities/baseoverlayeditor.md) - [CellCommitEvent](https://toolboxjs.com/grid/angular/api/types/cellcommitevent.md) - [CellEditor](https://toolboxjs.com/grid/angular/api/types/celleditor.md) - [CellRenderer](https://toolboxjs.com/grid/angular/api/types/cellrenderer.md) - [ColumnConfig](https://toolboxjs.com/grid/angular/api/types/columnconfig.md) - [ColumnGroupDefinition](https://toolboxjs.com/grid/angular/api/types/columngroupdefinition.md) - [ColumnShorthand](https://toolboxjs.com/grid/angular/api/types/columnshorthand.md) - [createPluginFromFeature](https://toolboxjs.com/grid/angular/api/utilities/createpluginfromfeature.md) - [EditorMountHook](https://toolboxjs.com/grid/angular/api/types/editormounthook.md) - [ExportMethods](https://toolboxjs.com/grid/angular/api/features/exportmethods.md) - [FeatureName](https://toolboxjs.com/grid/angular/api/types/featurename.md) - [FilterConfig](https://toolboxjs.com/grid/angular/api/types/filterconfig.md) - [FilteringMethods](https://toolboxjs.com/grid/angular/api/features/filteringmethods.md) - [FilterPanel](https://toolboxjs.com/grid/angular/api/types/filterpanel.md) - [FormArrayContext](https://toolboxjs.com/grid/angular/api/types/formarraycontext.md) - [getDetailTemplate](https://toolboxjs.com/grid/angular/api/utilities/getdetailtemplate.md) - [getFeatureFactory](https://toolboxjs.com/grid/angular/api/utilities/getfeaturefactory.md) - [getRegisteredFeatures](https://toolboxjs.com/grid/angular/api/utilities/getregisteredfeatures.md) - [getResponsiveCardTemplate](https://toolboxjs.com/grid/angular/api/utilities/getresponsivecardtemplate.md) - [Grid](https://toolboxjs.com/grid/angular/api/directives/grid.md) - [GridAdapter](https://toolboxjs.com/grid/angular/api/adapters/gridadapter.md) - [GridCellContext](https://toolboxjs.com/grid/angular/api/types/gridcellcontext.md) - [GridClipboardDirective](https://toolboxjs.com/grid/angular/api/directives/gridclipboarddirective.md) - [GridColumnEditor](https://toolboxjs.com/grid/angular/api/utilities/gridcolumneditor.md) - [GridColumnView](https://toolboxjs.com/grid/angular/api/directives/gridcolumnview.md) - [GridColumnVirtualizationDirective](https://toolboxjs.com/grid/angular/api/directives/gridcolumnvirtualizationdirective.md) - [GridConfig](https://toolboxjs.com/grid/angular/api/types/gridconfig.md) - [GridContextMenuDirective](https://toolboxjs.com/grid/angular/api/directives/gridcontextmenudirective.md) - [GridDetailContext](https://toolboxjs.com/grid/angular/api/types/griddetailcontext.md) - [GridDetailView](https://toolboxjs.com/grid/angular/api/directives/griddetailview.md) - [GridEditingDirective](https://toolboxjs.com/grid/angular/api/directives/grideditingdirective.md) - [GridEditorContext](https://toolboxjs.com/grid/angular/api/types/grideditorcontext.md) - [GridExportDirective](https://toolboxjs.com/grid/angular/api/directives/gridexportdirective.md) - [GridFilteringDirective](https://toolboxjs.com/grid/angular/api/directives/gridfilteringdirective.md) - [GridFormArray](https://toolboxjs.com/grid/angular/api/utilities/gridformarray.md) - [GridGroupingColumnsDirective](https://toolboxjs.com/grid/angular/api/directives/gridgroupingcolumnsdirective.md) - [GridGroupingRowsDirective](https://toolboxjs.com/grid/angular/api/directives/gridgroupingrowsdirective.md) - [GridHeaderContent](https://toolboxjs.com/grid/angular/api/directives/gridheadercontent.md) - [GridHeaderContentContext](https://toolboxjs.com/grid/angular/api/types/gridheadercontentcontext.md) - [GridIconRegistry](https://toolboxjs.com/grid/angular/api/utilities/gridiconregistry.md) - [GridLazyForm](https://toolboxjs.com/grid/angular/api/utilities/gridlazyform.md) - [GridMasterDetailDirective](https://toolboxjs.com/grid/angular/api/directives/gridmasterdetaildirective.md) - [GridMultiSortDirective](https://toolboxjs.com/grid/angular/api/directives/gridmultisortdirective.md) - [GridPinnedColumnsDirective](https://toolboxjs.com/grid/angular/api/directives/gridpinnedcolumnsdirective.md) - [GridPinnedRowsDirective](https://toolboxjs.com/grid/angular/api/directives/gridpinnedrowsdirective.md) - [GridPivotDirective](https://toolboxjs.com/grid/angular/api/directives/gridpivotdirective.md) - [GridPrintDirective](https://toolboxjs.com/grid/angular/api/directives/gridprintdirective.md) - [GridReorderColumnsDirective](https://toolboxjs.com/grid/angular/api/directives/gridreordercolumnsdirective.md) - [GridReorderRowsDirective](https://toolboxjs.com/grid/angular/api/directives/gridreorderrowsdirective.md) - [GridResponsiveCard](https://toolboxjs.com/grid/angular/api/directives/gridresponsivecard.md) - [GridResponsiveCardContext](https://toolboxjs.com/grid/angular/api/types/gridresponsivecardcontext.md) - [GridResponsiveDirective](https://toolboxjs.com/grid/angular/api/directives/gridresponsivedirective.md) - [GridRowDragDropDirective](https://toolboxjs.com/grid/angular/api/directives/gridrowdragdropdirective.md) - [GridSelectionDirective](https://toolboxjs.com/grid/angular/api/directives/gridselectiondirective.md) - [GridServerSideDirective](https://toolboxjs.com/grid/angular/api/directives/gridserversidedirective.md) - [GridStickyRowsDirective](https://toolboxjs.com/grid/angular/api/directives/gridstickyrowsdirective.md) - [GridToolbarContent](https://toolboxjs.com/grid/angular/api/directives/gridtoolbarcontent.md) - [GridToolbarContentContext](https://toolboxjs.com/grid/angular/api/types/gridtoolbarcontentcontext.md) - [GridToolPanel](https://toolboxjs.com/grid/angular/api/directives/gridtoolpanel.md) - [GridToolPanelContext](https://toolboxjs.com/grid/angular/api/types/gridtoolpanelcontext.md) - [GridTooltipDirective](https://toolboxjs.com/grid/angular/api/directives/gridtooltipdirective.md) - [GridTreeDirective](https://toolboxjs.com/grid/angular/api/directives/gridtreedirective.md) - [GridTypeRegistry](https://toolboxjs.com/grid/angular/api/utilities/gridtyperegistry.md) - [GridUndoRedoDirective](https://toolboxjs.com/grid/angular/api/directives/gridundoredodirective.md) - [GridVisibilityDirective](https://toolboxjs.com/grid/angular/api/directives/gridvisibilitydirective.md) - [GroupingColumnsConfig](https://toolboxjs.com/grid/angular/api/types/groupingcolumnsconfig.md) - [GroupingRowsConfig](https://toolboxjs.com/grid/angular/api/types/groupingrowsconfig.md) - [hasColumnShorthands](https://toolboxjs.com/grid/angular/api/utilities/hascolumnshorthands.md) - [injectGrid](https://toolboxjs.com/grid/angular/api/utilities/injectgrid.md) - [injectGridExport](https://toolboxjs.com/grid/angular/api/features/injectgridexport.md) - [injectGridFiltering](https://toolboxjs.com/grid/angular/api/features/injectgridfiltering.md) - [injectGridPrint](https://toolboxjs.com/grid/angular/api/features/injectgridprint.md) - [InjectGridReturn](https://toolboxjs.com/grid/angular/api/types/injectgridreturn.md) - [injectGridSelection](https://toolboxjs.com/grid/angular/api/features/injectgridselection.md) - [injectGridUndoRedo](https://toolboxjs.com/grid/angular/api/features/injectgridundoredo.md) - [isComponentClass](https://toolboxjs.com/grid/angular/api/utilities/iscomponentclass.md) - [isFeatureRegistered](https://toolboxjs.com/grid/angular/api/utilities/isfeatureregistered.md) - [LazyFormFactory](https://toolboxjs.com/grid/angular/api/types/lazyformfactory.md) - [MasterDetailConfig](https://toolboxjs.com/grid/angular/api/types/masterdetailconfig.md) - [normalizeColumns](https://toolboxjs.com/grid/angular/api/utilities/normalizecolumns.md) - [OverlayPosition](https://toolboxjs.com/grid/angular/api/types/overlayposition.md) - [PanelRender](https://toolboxjs.com/grid/angular/api/types/panelrender.md) - [PanelSlot](https://toolboxjs.com/grid/angular/api/types/panelslot.md) - [parseColumnShorthand](https://toolboxjs.com/grid/angular/api/utilities/parsecolumnshorthand.md) - [PinnedRowsConfig](https://toolboxjs.com/grid/angular/api/types/pinnedrowsconfig.md) - [PinnedRowSlot](https://toolboxjs.com/grid/angular/api/types/pinnedrowslot.md) - [PluginFactory](https://toolboxjs.com/grid/angular/api/types/pluginfactory.md) - [PrintMethods](https://toolboxjs.com/grid/angular/api/features/printmethods.md) - [provideGrid](https://toolboxjs.com/grid/angular/api/utilities/providegrid.md) - [provideGridIcons](https://toolboxjs.com/grid/angular/api/utilities/providegridicons.md) - [ProvideGridOptions](https://toolboxjs.com/grid/angular/api/types/providegridoptions.md) - [provideGridTypeDefaults](https://toolboxjs.com/grid/angular/api/utilities/providegridtypedefaults.md) - [registerFeature](https://toolboxjs.com/grid/angular/api/utilities/registerfeature.md) - [ResponsivePluginConfig](https://toolboxjs.com/grid/angular/api/types/responsivepluginconfig.md) - [RowCommitEvent](https://toolboxjs.com/grid/angular/api/types/rowcommitevent.md) - [RowFormChangeEvent](https://toolboxjs.com/grid/angular/api/types/rowformchangeevent.md) - [SelectionMethods](https://toolboxjs.com/grid/angular/api/features/selectionmethods.md) - [TbwEditor](https://toolboxjs.com/grid/angular/api/utilities/tbweditor.md) - [TbwGridColumn](https://toolboxjs.com/grid/angular/api/directives/tbwgridcolumn.md) - [TbwGridHeader](https://toolboxjs.com/grid/angular/api/directives/tbwgridheader.md) - [TbwGridToolButtons](https://toolboxjs.com/grid/angular/api/directives/tbwgridtoolbuttons.md) - [TbwRenderer](https://toolboxjs.com/grid/angular/api/directives/tbwrenderer.md) - [TypeDefault](https://toolboxjs.com/grid/angular/api/types/typedefault.md) - [TypeDefaultRegistration](https://toolboxjs.com/grid/angular/api/types/typedefaultregistration.md) - [UndoRedoMethods](https://toolboxjs.com/grid/angular/api/features/undoredomethods.md) - [ZonedPanelRender](https://toolboxjs.com/grid/angular/api/types/zonedpanelrender.md) ### React Adapter - [AllFeatureProps](https://toolboxjs.com/grid/react/api/types/allfeatureprops.md) - [applyColumnDefaults](https://toolboxjs.com/grid/react/api/utilities/applycolumndefaults.md) - [ChildFeatureDetector](https://toolboxjs.com/grid/react/api/types/childfeaturedetector.md) - [ColumnConfig](https://toolboxjs.com/grid/react/api/types/columnconfig.md) - [ColumnGroupDefinition](https://toolboxjs.com/grid/react/api/types/columngroupdefinition.md) - [ColumnShorthand](https://toolboxjs.com/grid/react/api/types/columnshorthand.md) - [DataGridProps](https://toolboxjs.com/grid/react/api/types/datagridprops.md) - [DataGridRef](https://toolboxjs.com/grid/react/api/types/datagridref.md) - [DetailPanelContext](https://toolboxjs.com/grid/react/api/types/detailpanelcontext.md) - [EditorMountHook](https://toolboxjs.com/grid/react/api/types/editormounthook.md) - [EventHandler](https://toolboxjs.com/grid/react/api/types/eventhandler.md) - [EventProps](https://toolboxjs.com/grid/react/api/types/eventprops.md) - [ExportMethods](https://toolboxjs.com/grid/react/api/features/exportmethods.md) - [FeatureProps](https://toolboxjs.com/grid/react/api/types/featureprops.md) - [FilterConfig](https://toolboxjs.com/grid/react/api/types/filterconfig.md) - [FilteringMethods](https://toolboxjs.com/grid/react/api/features/filteringmethods.md) - [GridAdapter](https://toolboxjs.com/grid/react/api/adapters/gridadapter.md) - [GridCellContext](https://toolboxjs.com/grid/react/api/types/gridcellcontext.md) - [GridColumn](https://toolboxjs.com/grid/react/api/components/gridcolumn.md) - [GridColumnProps](https://toolboxjs.com/grid/react/api/types/gridcolumnprops.md) - [GridConfig](https://toolboxjs.com/grid/react/api/types/gridconfig.md) - [GridDetailContext](https://toolboxjs.com/grid/react/api/types/griddetailcontext.md) - [GridDetailPanel](https://toolboxjs.com/grid/react/api/components/griddetailpanel.md) - [GridDetailPanelProps](https://toolboxjs.com/grid/react/api/types/griddetailpanelprops.md) - [GridEditorContext](https://toolboxjs.com/grid/react/api/types/grideditorcontext.md) - [GridHeaderContent](https://toolboxjs.com/grid/react/api/components/gridheadercontent.md) - [GridHeaderContentProps](https://toolboxjs.com/grid/react/api/types/gridheadercontentprops.md) - [GridIconProviderProps](https://toolboxjs.com/grid/react/api/types/gridiconproviderprops.md) - [GridProviderProps](https://toolboxjs.com/grid/react/api/types/gridproviderprops.md) - [GridResponsiveCard](https://toolboxjs.com/grid/react/api/components/gridresponsivecard.md) - [GridResponsiveCardProps](https://toolboxjs.com/grid/react/api/types/gridresponsivecardprops.md) - [GridToolbarContent](https://toolboxjs.com/grid/react/api/components/gridtoolbarcontent.md) - [GridToolbarContentProps](https://toolboxjs.com/grid/react/api/types/gridtoolbarcontentprops.md) - [GridToolButtons](https://toolboxjs.com/grid/react/api/components/gridtoolbuttons.md) - [GridToolButtonsProps](https://toolboxjs.com/grid/react/api/types/gridtoolbuttonsprops.md) - [GridToolPanel](https://toolboxjs.com/grid/react/api/components/gridtoolpanel.md) - [GridToolPanelContext](https://toolboxjs.com/grid/react/api/types/gridtoolpanelcontext.md) - [GridToolPanelProps](https://toolboxjs.com/grid/react/api/types/gridtoolpanelprops.md) - [GridTypeProviderProps](https://toolboxjs.com/grid/react/api/types/gridtypeproviderprops.md) - [GroupingColumnsConfig](https://toolboxjs.com/grid/react/api/types/groupingcolumnsconfig.md) - [GroupingRowsConfig](https://toolboxjs.com/grid/react/api/types/groupingrowsconfig.md) - [hasColumnShorthands](https://toolboxjs.com/grid/react/api/utilities/hascolumnshorthands.md) - [MasterDetailConfig](https://toolboxjs.com/grid/react/api/types/masterdetailconfig.md) - [normalizeColumns](https://toolboxjs.com/grid/react/api/utilities/normalizecolumns.md) - [PanelRender](https://toolboxjs.com/grid/react/api/types/panelrender.md) - [PanelSlot](https://toolboxjs.com/grid/react/api/types/panelslot.md) - [parseColumnShorthand](https://toolboxjs.com/grid/react/api/utilities/parsecolumnshorthand.md) - [PinnedRowsConfig](https://toolboxjs.com/grid/react/api/types/pinnedrowsconfig.md) - [PinnedRowSlot](https://toolboxjs.com/grid/react/api/types/pinnedrowslot.md) - [PostMountRefreshHook](https://toolboxjs.com/grid/react/api/types/postmountrefreshhook.md) - [PrintMethods](https://toolboxjs.com/grid/react/api/features/printmethods.md) - [ReactColumnGroupDefinition](https://toolboxjs.com/grid/react/api/types/reactcolumngroupdefinition.md) - [ReactFilterConfig](https://toolboxjs.com/grid/react/api/types/reactfilterconfig.md) - [ReactGroupingColumnsConfig](https://toolboxjs.com/grid/react/api/types/reactgroupingcolumnsconfig.md) - [ReactGroupingRowsConfig](https://toolboxjs.com/grid/react/api/types/reactgroupingrowsconfig.md) - [ReactPanelRender](https://toolboxjs.com/grid/react/api/types/reactpanelrender.md) - [ReactPanelSlot](https://toolboxjs.com/grid/react/api/types/reactpanelslot.md) - [ReactPinnedRowsConfig](https://toolboxjs.com/grid/react/api/types/reactpinnedrowsconfig.md) - [ReactPinnedRowSlot](https://toolboxjs.com/grid/react/api/types/reactpinnedrowslot.md) - [ReactZonedPanelRender](https://toolboxjs.com/grid/react/api/types/reactzonedpanelrender.md) - [registerChildFeatureDetector](https://toolboxjs.com/grid/react/api/utilities/registerchildfeaturedetector.md) - [registerEditorMountHook](https://toolboxjs.com/grid/react/api/utilities/registereditormounthook.md) - [registerFeaturePropKey](https://toolboxjs.com/grid/react/api/utilities/registerfeaturepropkey.md) - [registerPostMountRefresh](https://toolboxjs.com/grid/react/api/utilities/registerpostmountrefresh.md) - [ResponsiveCardContext](https://toolboxjs.com/grid/react/api/types/responsivecardcontext.md) - [ResponsivePluginConfig](https://toolboxjs.com/grid/react/api/types/responsivepluginconfig.md) - [SelectionMethods](https://toolboxjs.com/grid/react/api/features/selectionmethods.md) - [SSRProps](https://toolboxjs.com/grid/react/api/types/ssrprops.md) - [ToolPanelContext](https://toolboxjs.com/grid/react/api/types/toolpanelcontext.md) - [TypeDefault](https://toolboxjs.com/grid/react/api/types/typedefault.md) - [TypeDefaultsMap](https://toolboxjs.com/grid/react/api/types/typedefaultsmap.md) - [UndoRedoMethods](https://toolboxjs.com/grid/react/api/features/undoredomethods.md) - [useGrid](https://toolboxjs.com/grid/react/api/hooks/usegrid.md) - [useGridExport](https://toolboxjs.com/grid/react/api/features/usegridexport.md) - [useGridFiltering](https://toolboxjs.com/grid/react/api/features/usegridfiltering.md) - [useGridIcons](https://toolboxjs.com/grid/react/api/hooks/usegridicons.md) - [useGridOverlay](https://toolboxjs.com/grid/react/api/hooks/usegridoverlay.md) - [UseGridOverlayOptions](https://toolboxjs.com/grid/react/api/types/usegridoverlayoptions.md) - [useGridPrint](https://toolboxjs.com/grid/react/api/features/usegridprint.md) - [UseGridReturn](https://toolboxjs.com/grid/react/api/types/usegridreturn.md) - [useGridSelection](https://toolboxjs.com/grid/react/api/features/usegridselection.md) - [useGridTypeDefaults](https://toolboxjs.com/grid/react/api/hooks/usegridtypedefaults.md) - [useGridUndoRedo](https://toolboxjs.com/grid/react/api/features/usegridundoredo.md) - [useTypeDefault](https://toolboxjs.com/grid/react/api/hooks/usetypedefault.md) - [ZonedPanelRender](https://toolboxjs.com/grid/react/api/types/zonedpanelrender.md) ### Vue Adapter - [AllFeatureProps](https://toolboxjs.com/grid/vue/api/types/allfeatureprops.md) - [CellEditor](https://toolboxjs.com/grid/vue/api/types/celleditor.md) - [CellRenderer](https://toolboxjs.com/grid/vue/api/types/cellrenderer.md) - [CellSlotProps](https://toolboxjs.com/grid/vue/api/types/cellslotprops.md) - [clearFeatureRegistry](https://toolboxjs.com/grid/vue/api/utilities/clearfeatureregistry.md) - [ColumnConfig](https://toolboxjs.com/grid/vue/api/types/columnconfig.md) - [ColumnGroupDefinition](https://toolboxjs.com/grid/vue/api/types/columngroupdefinition.md) - [createPluginFromFeature](https://toolboxjs.com/grid/vue/api/utilities/createpluginfromfeature.md) - [DetailPanelContext](https://toolboxjs.com/grid/vue/api/types/detailpanelcontext.md) - [EditorSlotProps](https://toolboxjs.com/grid/vue/api/types/editorslotprops.md) - [ExportMethods](https://toolboxjs.com/grid/vue/api/features/exportmethods.md) - [FeatureName](https://toolboxjs.com/grid/vue/api/types/featurename.md) - [FeatureProps](https://toolboxjs.com/grid/vue/api/types/featureprops.md) - [FilterConfig](https://toolboxjs.com/grid/vue/api/types/filterconfig.md) - [FilteringMethods](https://toolboxjs.com/grid/vue/api/features/filteringmethods.md) - [getFeatureFactory](https://toolboxjs.com/grid/vue/api/utilities/getfeaturefactory.md) - [getRegisteredFeatures](https://toolboxjs.com/grid/vue/api/utilities/getregisteredfeatures.md) - [GridAdapter](https://toolboxjs.com/grid/vue/api/adapters/gridadapter.md) - [GridConfig](https://toolboxjs.com/grid/vue/api/types/gridconfig.md) - [GridIconProviderProps](https://toolboxjs.com/grid/vue/api/types/gridiconproviderprops.md) - [GridProviderProps](https://toolboxjs.com/grid/vue/api/types/gridproviderprops.md) - [GridTypeProviderProps](https://toolboxjs.com/grid/vue/api/types/gridtypeproviderprops.md) - [GroupingColumnsConfig](https://toolboxjs.com/grid/vue/api/types/groupingcolumnsconfig.md) - [GroupingRowsConfig](https://toolboxjs.com/grid/vue/api/types/groupingrowsconfig.md) - [HeaderLabelSlotProps](https://toolboxjs.com/grid/vue/api/types/headerlabelslotprops.md) - [HeaderSlotProps](https://toolboxjs.com/grid/vue/api/types/headerslotprops.md) - [isFeatureRegistered](https://toolboxjs.com/grid/vue/api/utilities/isfeatureregistered.md) - [MasterDetailConfig](https://toolboxjs.com/grid/vue/api/types/masterdetailconfig.md) - [PanelRender](https://toolboxjs.com/grid/vue/api/types/panelrender.md) - [PanelSlot](https://toolboxjs.com/grid/vue/api/types/panelslot.md) - [PinnedRowsConfig](https://toolboxjs.com/grid/vue/api/types/pinnedrowsconfig.md) - [PinnedRowSlot](https://toolboxjs.com/grid/vue/api/types/pinnedrowslot.md) - [PluginFactory](https://toolboxjs.com/grid/vue/api/types/pluginfactory.md) - [PrintMethods](https://toolboxjs.com/grid/vue/api/features/printmethods.md) - [registerFeature](https://toolboxjs.com/grid/vue/api/utilities/registerfeature.md) - [ResponsiveCardContext](https://toolboxjs.com/grid/vue/api/types/responsivecardcontext.md) - [ResponsivePluginConfig](https://toolboxjs.com/grid/vue/api/types/responsivepluginconfig.md) - [SelectionMethods](https://toolboxjs.com/grid/vue/api/features/selectionmethods.md) - [SSRProps](https://toolboxjs.com/grid/vue/api/types/ssrprops.md) - [ToolPanelContext](https://toolboxjs.com/grid/vue/api/types/toolpanelcontext.md) - [TypeDefault](https://toolboxjs.com/grid/vue/api/types/typedefault.md) - [TypeDefaultsMap](https://toolboxjs.com/grid/vue/api/types/typedefaultsmap.md) - [UndoRedoMethods](https://toolboxjs.com/grid/vue/api/features/undoredomethods.md) - [useGrid](https://toolboxjs.com/grid/vue/api/composables/usegrid.md) - [useGridExport](https://toolboxjs.com/grid/vue/api/features/usegridexport.md) - [useGridFiltering](https://toolboxjs.com/grid/vue/api/features/usegridfiltering.md) - [useGridIcons](https://toolboxjs.com/grid/vue/api/composables/usegridicons.md) - [useGridPrint](https://toolboxjs.com/grid/vue/api/features/usegridprint.md) - [UseGridReturn](https://toolboxjs.com/grid/vue/api/types/usegridreturn.md) - [useGridSelection](https://toolboxjs.com/grid/vue/api/features/usegridselection.md) - [useGridTypeDefaults](https://toolboxjs.com/grid/vue/api/composables/usegridtypedefaults.md) - [useGridUndoRedo](https://toolboxjs.com/grid/vue/api/features/usegridundoredo.md) - [useTypeDefault](https://toolboxjs.com/grid/vue/api/composables/usetypedefault.md) - [VueColumnGroupDefinition](https://toolboxjs.com/grid/vue/api/types/vuecolumngroupdefinition.md) - [VueFilterConfig](https://toolboxjs.com/grid/vue/api/types/vuefilterconfig.md) - [VueGroupingColumnsConfig](https://toolboxjs.com/grid/vue/api/types/vuegroupingcolumnsconfig.md) - [VueGroupingRowsConfig](https://toolboxjs.com/grid/vue/api/types/vuegroupingrowsconfig.md) - [VuePanelRender](https://toolboxjs.com/grid/vue/api/types/vuepanelrender.md) - [VuePanelSlot](https://toolboxjs.com/grid/vue/api/types/vuepanelslot.md) - [VuePinnedRowsConfig](https://toolboxjs.com/grid/vue/api/types/vuepinnedrowsconfig.md) - [VuePinnedRowSlot](https://toolboxjs.com/grid/vue/api/types/vuepinnedrowslot.md) - [VueZonedPanelRender](https://toolboxjs.com/grid/vue/api/types/vuezonedpanelrender.md) - [ZonedPanelRender](https://toolboxjs.com/grid/vue/api/types/zonedpanelrender.md) ## Optional - [Full documentation](https://toolboxjs.com/llms-full.txt): Guide, plugin and adapter pages inlined into one file for one-shot ingestion (a few non-implementation pages such as the changelogs are omitted; they remain linked above). - [Full documentation — React](https://toolboxjs.com/llms-full-react.txt): The full corpus scoped to React; code examples are narrowed to React and the Vue/Angular adapter pages are omitted. - [Full documentation — Vue](https://toolboxjs.com/llms-full-vue.txt): The full corpus scoped to Vue; code examples are narrowed to Vue and the React/Angular adapter pages are omitted. - [Full documentation — Angular](https://toolboxjs.com/llms-full-angular.txt): The full corpus scoped to Angular; code examples are narrowed to Angular and the React/Vue adapter pages are omitted. - [Full documentation — Vanilla](https://toolboxjs.com/llms-full-vanilla.txt): The full corpus scoped to vanilla TypeScript/JavaScript; the React, Vue and Angular adapter pages are omitted.