Completed
Last Updated: 11 Oct 2012 05:10 by ADMIN
FIX. RadTreeView - updating a field in the DataBoundItem of a node is not automatically reflected
Completed
Last Updated: 19 Sep 2012 02:48 by ADMIN
To reproduce:

 myTree.TreeViewElement.Comparer = new TreeSort(myTree.TreeViewElement);

Work around: None
Completed
Last Updated: 18 Sep 2012 09:16 by ADMIN
To reproduce:
public Form1()
        {
            InitializeComponent();

            DataTable table = new DataTable();
            table.Columns.Add("ID");
            table.Columns.Add("Name");

            for (int i = 0; i < 10; i++)
            {
  
Completed
Last Updated: 28 Aug 2012 06:23 by ADMIN
1. Create a new project with RadTreeView.
2. Add 30 nodes in a cycle on Form.Shown event.
3. Use BeginUpdate/EndUpdate methods when adding every single node. 
4. Set the SelectedNode property of RadTreeView every time.
Completed
Last Updated: 17 Aug 2012 03:27 by ADMIN
1. Place a RadTreeView in a form and add enough items to show scrollbars;
2. Show the form using ShowDialog() and close it
3. Open it again and note that there are no scrollbars in the RadTreeView
Completed
Last Updated: 16 Aug 2012 06:01 by ADMIN
We upgraded to Telerik.WinControls  2012.2.726.20

I tried adding a RadTreeNode as follows

RadTreeNode rtn1 = new RadTreeNode("C1");
rtn1.CheckType = CheckType.RadioButton;
rtn1.CheckState = Telerik.WinControls.Enumerations.ToggleState.On;
received an error when running.
Completed
Last Updated: 16 Aug 2012 04:16 by ADMIN
To reproduce, use the following code. Once the app starts, expand nodes 1, 5,10, 15 and 19. Scroll to the very bottom and filter the tree:
public partial class Form1 : RadForm
    {
        public Form1()
        {
            InitializeComponent();

     
Completed
Last Updated: 06 Aug 2012 03:55 by ADMIN
To reprodice:
for (int i = 0; i < 20; i++)
{
RadTreeNode node = new RadTreeNode("Node " + i);
node.ToolTipText = "hello " + i;
radTreeView1.Nodes.Add(node);
}
Completed
Last Updated: 04 Jul 2012 07:55 by Jesse Dyck
Summary of the program logic:
The app allows the user to edit hierarchical data that is serialized/deserialized from an XML file. It is first deserialized into a collection of business objects that are structured hierarchically:

MetadataNode
--LongNameEnglish::string
--LongNameArabic::string
--Nodes::BindingList<MetadataNode>

I take this hierarchical collection and flatten it out so that each node references the Id of its parent node (self-referencing):

--Node 1 (Id:1, ParentId:null)
----Node 1-1 (Id:2, ParentId:1)
----Node 1-2 (Id:3, ParentId:1)

In the attached project, if you run it and select File->Open Data File and browse to and select the Metadata2.xml file that I included in the root of the ZIP archive, then click the add button (the icon with the "+" symbol on top of the treeview control), the code in the AddNode function works as expected--it calls RadTreeView.BeginUpdate(), adds a new item to the datasource (a BindingList<MetadataNode> collection), then calls RadTreeView.EndUpdate(). However, if you run the application and select File->New Data File and click the add button, the same code throws a NullReferenceException when the RadTreeView.EndUpdate() method is called.
Completed
Last Updated: 04 Jul 2012 06:28 by ADMIN
To reproduce use this code:
RadTreeView tree = new RadTreeView();
tree.Name = "tree";
       
RadTreeNode[] nodes = new RadTreeNode[5];
for (int i = 0; i < nodes.Length; ++i)
  nodes[i] = new RadTreeNode(i.ToString());
 
tree.Nodes.AddRange(nodes);
tree.Nodes.Clear();
tree.Nodes.AddRange(nodes);
Completed
Last Updated: 26 Jun 2012 06:16 by ADMIN
1. Create a new project with RadTreeView.
2. When handling Form.Load event add two root nodes and several child nodes.
3. Run the project and vertical scrollbar will be visible when it is not needed.
Completed
Last Updated: 21 Jun 2012 03:27 by ADMIN
Use the scrollintoview method of the tree to select a node while the treeview has not the focus.
Completed
Last Updated: 18 Jun 2012 03:29 by ADMIN
To reproduce:
  for (int i = 0; i < 10; i++)
            {
                RadTreeNode node = new RadTreeNode("Node " + i);
                radTreeView1.Nodes.Add(node);

                node.Style.GradientStyle = GradientStyles.Solid;
                node.Style.BackColor = System.Drawing.Color.LightCoral;
            }
Workaround: use NodeFormatting
Completed
Last Updated: 19 May 2012 06:39 by Svetlin
1. Set CheckBoxes property of RadTreeView to true.
2. Set TriStateMode property of RadTreeView to true.
3. Cancel the node checked state property of a node in the NodeCheckedChanging event
4. The parent node will not be in intermediate checked state.
Completed
Last Updated: 08 May 2012 04:13 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: TreeView
Type: Bug Report
0
I want (for some reason) make nodes in treeview checked in "one line" (i.e. in Nodes collection of any node - no more than one child could be checked). Also, latest (i.e. deepest) node should be selected.

In attached example (see Example.zip):
1. Check node "Node 19" (as a result - nodes "Node 1", "Node 18" and "Node 19" checked and "Node 19" is selected).
2. Uncheck node "Node 1". Should be - nodes "Node 18" and "Node 19" checked and "Node 19" is selected. As a result - exception arised (see text of exception in Exception.zip).

I suppose that it may be connected with "invisibility" of "Node 19" (I mean, if I make this actions with "Node 3" - it works fine).
Completed
Last Updated: 20 Apr 2012 04:27 by ADMIN
It seems that when you try to collapse a node the application thread crashes. The exception seems to point pretty firmly at the Telerik control - when it is applying styles to a node?
Completed
Last Updated: 18 Apr 2012 04:22 by ADMIN
FIX. RadTreeView - exception while filtering a tree scrolled to the bottom end point
Completed
Last Updated: 17 Apr 2012 07:28 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: TreeView
Type: Bug Report
3
The problem may be reproduced in example application in TreeView/First Look 
The scenario is as follows:
-enter some text as a filter
-delete text - filter should be off
-add new node by context menu -> "New Node" appears twice in the tree view
Completed
Last Updated: 12 Apr 2012 04:21 by Svetlin
The checked state of parent node is incorrect when TriStateMode is enabled and it has a child node with no check type.
Completed
Last Updated: 11 Apr 2012 10:37 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: TreeView
Type: Bug Report
3
To reproduce:
  public Form1()
        {
            InitializeComponent();

            for (int i = 0; i < 10; i++)
            {
                RadTreeNode node = new RadTreeNode("Root node " + i);
                for (int j = 0; j < 10; j++)