Column menu

Every column header carries a menu button (⋮). By default it's a flat list of actions plus a "Choose columns" submenu. Opt into the AG-Grid tabbed layout with columnMenuTabs:

<SvGrid {data} {columns} {features} columnMenuTabs />

The tabbed menu has three tabs:

The menu opens on the General tab. The Filter tab is omitted for columns that aren't filterable (filterable: false or no field).

<!-- The menu appears automatically; filtering enables the Filter tab. -->
<SvGrid {data} {columns} features={tableFeatures({ rowSortingFeature, columnFilteringFeature })} />

For a docked, always-visible version of the Columns and Filters lists, see the tool panel.

See also