Hello,
I'm trying to bind a hierarchical RadGridView to the same DataForm on a window (n levels of children, determined at runtime).
For the first level i do:
_qcv = new QueryableCollectionView(_entities.Countries.ToList());
radGridView1.ItemsSource = _qcv;
radDataForm1.ItemsSource = _qcv;
Everything works fine, the grid is well syncronized with the dataform.
How can i get acces to the new expanded child grids to do the same? I mean bind the itemsCollections behind those grids to the dataForm and keep them in sync? What events should i use and how should i get the child Collections?
What is the correct aproach for this kind of children/parent/dataform sync?
Thank you.
I'm trying to bind a hierarchical RadGridView to the same DataForm on a window (n levels of children, determined at runtime).
For the first level i do:
_qcv = new QueryableCollectionView(_entities.Countries.ToList());
radGridView1.ItemsSource = _qcv;
radDataForm1.ItemsSource = _qcv;
Everything works fine, the grid is well syncronized with the dataform.
How can i get acces to the new expanded child grids to do the same? I mean bind the itemsCollections behind those grids to the dataForm and keep them in sync? What events should i use and how should i get the child Collections?
What is the correct aproach for this kind of children/parent/dataform sync?
Thank you.