Unplanned
Last Updated: 15 Aug 2017 09:38 by ADMIN
ADMIN
Stefan
Created on: 05 Jun 2013 04:14
Category: TreeView
Type: Feature Request
3
ADD. RadTreeView - the Nodes collection of the control does not contain the filtered nodes and the users cannot access all nodes in the control
To reproduce:

radTreeView1.Filter = "new";
var node = new RadTreeNode( "test" );
radTreeView1.Nodes.Add( node );
//here the node is not in the Nodes collection
if ( radTreeView1.Nodes.Contains( node ) == false )
{
 radTreeView1.Nodes.Add( new RadTreeNode( "test" ) );
}

Workaround: remove the filter, perform the desired check and restore the filter
0 comments