Documentation
Collapsible Columns
Collapsible columns allow users to dynamically hide and show grouped columns to optimize screen space and focus on relevant data. Click the arrow icons in column headers to collapse entire column groups while keeping important columns visible.
Basic Implementation
Collapsible columns are created by adding the collapsible: true property to a parent column with children columns. Users can click the arrow icon in the header to collapse the column group.
Collapsible Columns Configuration
Collapse Behaviors
Collapsible columns support different behaviors when collapsed:
Visibility Control
Control when child columns are visible using the showWhen attribute:
📖 When Expanded
showWhen: "parentExpanded"
📕 When Collapsed
showWhen: "parentCollapsed"
🔄 Always Visible
showWhen: "always"