You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix hierarchical grid to render nested child tables correctly
Fixed issue where grandchildren (child tables of child tables) were being
rendered as regular rows instead of separate nested tables.
Changes:
- Moved grandchildren detection logic before drawing the parent row
- If a child record has grandchildren, draw it as a parent row first, then
recursively render its children as a nested child table
- If a child record has no grandchildren, draw it as a regular row
- This ensures proper nested table structure at all levels
- Each level of nesting gets its own child table with headers
Now hierarchical grids correctly render child tables at all nesting levels,
with proper indentation and table structure maintained throughout.
Co-authored-by: kdinev <[email protected]>
0 commit comments