📄️ Defining Columns
The only required props are key and getValue.
📄️ Filtering
If you want to search across all columns see Global Search
📄️ Grouping
The columns prop can be an array of column or column groups, and groups can also be nested. See Defining Columns for a definition of both.
📄️ Pinning
You can pin both columns and groups. If you pin a group, it's descendents will inherit that pin.
📄️ Reordering
You can enable reordering with the enableColumnReorder prop. As with any columns changes you should also implement onColumnsChange.
📄️ Resizing
You can enable resizing with the enableColumnResize prop. As with any columns changes you should also implement onColumnsChange.
📄️ Spanning
Column spanning is done by add a colSpan? T) => number function to a column definition. Anything greater than 1 will make the cell span into adjacent cells. -1 means span over all columns in the grid area.