Completed
Last Updated: 21 Mar 2011 06:17 by ADMIN
Create a new project and add RadTreeView
Handle the Click event
Call the Close method of the Form when handling the Click event
Completed
Last Updated: 24 Feb 2012 09:30 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: TreeView
Type: Bug Report
0
1. navigate to some tree item, try to right-click it to see context menu. It is working ok
2. have the focus on tree item, and having the mouse over that item, try to press context keyboard button
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: 24 Jan 2012 10:07 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: TreeView
Type: Bug Report
0
Use the project from the ticket to reproduce this issue.
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: 11 Feb 2014 16:10 by ADMIN
To reproduce: 
  void radTreeView1_EditorInitialized(object sender, TreeNodeEditorInitializedEventArgs e)
        {
            TreeViewTextBoxEditor editor = e.Editor as TreeViewTextBoxEditor;
            BaseTextBoxEditorElement element = (BaseTextBoxEditorElement)editor.EditorElement;
            element.TextChanging+=new TextChangingEventHandler(element_TextChanging);
        }

        void  element_TextChanging(object sender, TextChangingEventArgs e)
        {
            e.Cancel = true;
        }
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: 02 Feb 2017 07:45 by ADMIN
Please refer to the attached gif files illustrating the working and non working design time data binding.
Completed
Last Updated: 07 Dec 2011 12:22 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: TreeView
Type: Bug Report
0
1. Create a new project and add RadTreeView
2. Add Add and Clear buttons
3. On Add button click - add nodes
4. On Clear button click - call the Clear method of the Nodes collection
5. Run the project and click the Add/Clear methods several times
Completed
Last Updated: 16 Dec 2011 04:49 by ADMIN
1. Create a new project with RadTreeView
2. Run the project
3. Click inside RadTreeView
4. Press the up/down arrows several times
5. An exception will occur
Completed
Last Updated: 22 Jul 2011 08:05 by ADMIN
When there is a tree node with long text and the FullRowSelect property is set to false and you click on this node, the scrollbar will scroll to right.
Completed
Last Updated: 23 Jan 2013 05:13 by ADMIN
To reproduce:
- populate a tree with some nodes in different levels


- set the ShowLines to true
- select a node on the second level
- clear the nodes on a button click => exception is thrown

WORKAROUND:
radTreeView1.ShowLines = false; 
radTreeView1.Nodes.Clear(); 
radTreeView1.ShowLines = true;
Completed
Last Updated: 05 Nov 2013 02:31 by ADMIN
Workaround:
this.radTreeView1.SelectedNode = null;
Declined
Last Updated: 20 Oct 2014 14:41 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: TreeView
Type: Feature Request
0
IMPROVE. RadTreeView - add support for DataBindings of RadTreeNode

Resolution: The feature is duplicated with feedback item ADD. RadTreeView - add support for binding the checkboxes of the nodes to a field in the data
Here is the link to item:  http://feedback.telerik.com/Project/154/Feedback/Details/112624-add-radtreeview-add-support-for-binding-the-checkboxes-of-the-nodes-to-a-field. 
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: TreeView
Type: Bug Report
0
The images and SignStyle cannot be modified using Visual Style Builder.
Completed
Last Updated: 30 Aug 2011 04:06 by ADMIN
FIX. RadTreeView - Collapse method of RadTreeNode throws an exception if uised afrer children are added
Completed
Last Updated: 07 Mar 2011 09:43 by ADMIN
RadTreeView arrow keys navigation is not correct in RTL mode. It should expand with left key and collapse with right key (the opposite of normal mode)
Completed
Last Updated: 01 Jun 2011 02:34 by ADMIN
FIX. RadTreeView throws exception when node text is changed to empty string in bound mode
Completed
Last Updated: 24 Mar 2011 12:01 by ADMIN
FIX. RadTreeView SelectedNodeChanged is fired even when you click outside the node with disabled FullRowSelect
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