If the data like below:
RootNode1
- Level1
-- Level2
--- Level3
and I would like to provide a check box to hide Level1 or Level2
Ex: Hide Level1 the output should be
RootNode1
- Level2
-- Level3
Ex: Hide Level2 the output should be
RootNode1
- Level1
-- Level3
Ex: Hide both Level1 and Level2 the output should be
RootNode1
- Level3
Is possible to do it with RadTreeView?
BTW: we are using RadControl for WPF 2012.2.0725, and the each level in the tree is an ObservableCollection list, and we use converter to convert each list into ListCollectionView to handle sorting and filtering ( http://www.zagstudio.com/blog/434#.UDz-sNaPXng ).
Thanks.
RootNode1
- Level1
-- Level2
--- Level3
and I would like to provide a check box to hide Level1 or Level2
Ex: Hide Level1 the output should be
RootNode1
- Level2
-- Level3
Ex: Hide Level2 the output should be
RootNode1
- Level1
-- Level3
Ex: Hide both Level1 and Level2 the output should be
RootNode1
- Level3
Is possible to do it with RadTreeView?
BTW: we are using RadControl for WPF 2012.2.0725, and the each level in the tree is an ObservableCollection list, and we use converter to convert each list into ListCollectionView to handle sorting and filtering ( http://www.zagstudio.com/blog/434#.UDz-sNaPXng ).
Thanks.