ChildRow
ChildRow is a term used in the context of hierarchical tabular data, referring to a row that represents a subordinate item in relation to a parent row. In tree grid or expandable table implementations, a ChildRow is displayed under its parent, can be expanded or collapsed, and typically carries a depth level indicating its position in the hierarchy.
Key characteristics include indentation to show nesting, a reference to the parent (often a parentId), and sometimes
Rendering and interaction: users can expand or collapse ChildRows to reveal or hide descendants; accessibility considerations
Common use cases include file system trees, organizational charts, project task breakdowns, and product catalogs that
Implementation notes: ensure unique identifiers, handle dynamic changes in the hierarchy (adding, moving, deleting), and manage
See also: ParentRow, Tree grid, Hierarchical data, Row, Data table, Expandable row.