Skip to content

GridToolPanelProps

Props for the GridToolPanel component.

PropertyTypeDescription
idstringUnique identifier for this panel. Required for the shell plugin to track the panel.
title?stringPanel title shown in the accordion header. v3.1.0 (previously required)+
icon?stringIcon for the accordion section header. Can be an emoji or text.
tooltip?stringTooltip text for the accordion header.
order?numberPanel order priority. Lower values appear first.
children(ctx: ToolPanelContext) => ReactNodeRender function for the panel content. Receives a context with the grid element reference.

Panel title shown in the accordion header.

Optional — omit it when the panel’s rendered content already provides its own heading. With a single title-less panel the accordion header row is skipped entirely; with multiple panels a title-less header still renders (empty title) so the expand/collapse control stays available.


Default: 100


<GridToolPanel id="filters" title="Quick Filters" icon="🔍">
{({ grid }) => <QuickFilters gridRef={grid} />}
</GridToolPanel>