Hey Guys,
Probably a easy one, but ive created a dataset with a parent table and child tables
using
new System.Data.DataRelation("Rel" + i.ToString(),
ds.Relations.Add(relation);
I then using SetDataBinding to bind it to my tree, the only problem im having for each row on the parent set it is showing 10 nodes(number of child table) even though there is no relationship between them, thus, for the tables that are related to the parent row, these are populated... what i would like to see is only the child tables with there names NOT the "Rel.." name
any ideas
Hi Ben,
It sounds like you are talking about the Band Nodes. If your data has sibling bands, then those bands have to be seperated out into different parents, so the tree creates the band nodes for that. There's no way to display data from different tables in a single nodes collection in the tree.