Home - Forums-.NET - FlyGrid.Net (Windows Forms) - Parent Node

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

Parent Node
Link Posted: 02-Oct-2006 09:41
When using nested grids, how do I obtain a reference to a node's actual parent node? I've tried using node.Parent, but this returns a reference to a NestedRootNode, and it's properties (e.g., Value or Index) don't match those of the actual parent node...

Thanks in advance!
Link Posted: 02-Oct-2006 22:13
There are two ways to get real parent node:
1. If you know the nested viewport that contains a node:
[c#]
public NodeBase GetParentNode(FlyGridViewPort port)
{
   return port.Holder;
}

2. If you don't know the nested viewport:
[c#]
public NodeBase GetParentNode(NodeBase node)
{
  NodeBase parent = node.Parent;  
  INestedRoot nestedRoot = parent as INestedRoot;
  return nestedRoot != null ? nestedRoot.Holder : parent;  
}