Home - Forums-.NET - FlyGrid.Net (Windows Forms) - How to programmatically expand nested grids in bound grid

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

How to programmatically expand nested grids in bound grid
Link Posted: 06-Jan-2006 13:59
I'd like to implement ExpandAll/CollapseAll functionality for a grid with nested grids based on binding to a dataset with two related tables. But it seems the methods on NodeBase only work for TreeView style nodes, not nested grids.

The node type appears to be VirtualNestedGridNode.  And while the HasChildren property is true, the Items collection has a count of 0.

How can I implement this?
Link Posted: 07-Jan-2006 18:10
Hello - If you are trying to do this on the entire grid, try these:

myFlyGrid.Rows.ExpandAll();

- and -

myFlyGrid.Rows.CollapseAll();
Link Posted: 09-Jan-2006 06:12
I have created a new post, this is a BUG in the latest release.  NestedGridNode.Items has no members!
Link Posted: 09-Jan-2006 06:14
PS  I did try ExpandAll and CollapseAll...