Hello.
I have dataset with two tables are related.
Firstly, I want to hide header for Parent table.
Furthe,
I Added columns to the grid like this:
GridHierarchyLevel quotes = gridDataBoundGrid1.Binder.AddRelation(dataset11.Relations[0].RelationName);
GridHierarchyLevel root = gridDataBoundGrid1.Binder.RootHierarchyLevel;
root.LayoutColumns(new string[] {"Portfolio", "-", "-", "-", "-", "-", "-", "-", "-"});
quotes.LayoutColumns(new string[]{"Symbol", "Compress", "Date", "Open", "High", "Low", "Close", "Volume"});
Now, I want to add new 4 columns Col1, Col2, Col3, Col4 to the nested table and I want to cover it with header "Added Columns".
Please see example.
This is must be before adding new columns:
BeforeAdd_9425.zip
And this is must be after adding new columns:
AfterAdd_7751.zip
Please draw attention , I need to add columns to nested table.
Thanks a lot.
Best Regards, Slava.