UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

8 lines (7 loc) 247 B
export const makeRowGroupToggle = (grid) => { return (row, state) => { const api = grid.api; const next = state == null ? !api.rowGroupIsExpanded(row) : state; api.rowGroupApplyExpansions({ [row.id]: next }); }; };