Completed
Last Updated: 20 Feb 2014 15:27 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 17 Dec 2013 05:47
Category: TreeView
Type: Bug Report
1
FIX. RadTreeView - {RadTreeNode}.Nodes.Clear() sets the parent to null recursively to all inner levels of Nodes
Workaround:
Instead of {RadTreeNode}.Nodes.Clear(), use 

 while ({RadTreeNode}.Nodes.Count>0)
          {
              {RadTreeNode}.Nodes.RemoveAt(0);
          }
0 comments