HelIo,
I have a structure that looks like following:
Class
TreeNode {
public
TreeNode
Parent {
get; }
public
IEnumerable<TreeNode>
Children {
get; }
public …
}
I want to bind this structure to a Telerik RadGrid with detail tables for each level of the children. I know that radgrid supports declarative binding to a self-referencing hierarchy, but that assumes you have a flat dataset (e.g. from a database) and can look at a parent key field of some sort. My question is: It is possible to bound a radgrid to a data structure like the one I mentioned and is there a way to do it declaratively?
Thanks in advance,
Misa