New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
private void button1_Click(object sender, System.EventArgs e)
{
for(int i = 0; i < this.gridGroupingControl1.Table.DisplayElements.Count; i++)
{
Element el = this.gridGroupingControl1.Table.DisplayElements[i];
if(el.Kind == DisplayElementKind.NestedTable)
{
GridNestedTable nt = (GridNestedTable) el;
foreach(Element el1 in nt.ChildTable.NestedDisplayElements)
{
System.Diagnostics.Trace.WriteLine(el1);
}
i += (nt.ChildTable.NestedDisplayElements.Count - 1);
}
else
{
System.Diagnostics.Trace.WriteLine(el);
}
}
}
GGC_18197.zip
Best regards,
Jay N