There is no way to reset the style of node to its default one by using its Style property.
While a node is dragged and right mouse button is clicked, the dragged node is replaced with the selected node.
SelectedNodeChanged event not owrk properly during remove operation of SelectedNode
FIX. RadTreeView - Collapse method of RadTreeNode throws an exception if uised afrer children are added
FIX RadTreeView - the CheckedNodes property should return the number of the logical checked nodes, not the visual once
If the ShowLines property is set to true and a node's expander is hidded, a link line should appear instead. Comment: When using full lazy mode RadGridView displays expander icon for all nodes. When it is hidden there is a whitespace. You can show tree lines only with code.
Allow drag and drop of RadTreeView's nodes in bound mode
If ALT key is pressed, the dragged nodes should be copied when drag and drop is performed.
If you set the AllowDragDrop property to true, the node context menu should contains Cut, Copy and Paste items.
FIX. RadTreeView - setting the AllowDragDrop property adds in the designer setting for the depricated AllowDragDropBetweenTreeViews property.
The SelectedNodeChanged event in RadTreeView is fired before the SelectedNodes collection is updated.
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.
Currently it is not possible to persist the Text property when using RadTreeView in bound mode. The RadTreeNodeCollection.Add method returns wrong node.
ADD. RadTreeView - add drag and drop functionality in bound mode too
The XML serialization of RadTreeNode does not serialize its Font and ForeColor properties. The XML deserialization does not create a checked nodes from xml file that contains serialized checked nodes.
If the DPI configuration has 120% value, Save, Close and Cancel buttons disappear from the Property Builder form.
The AllowDrop property of RadTreeNode allows dropping of node when its value is false.
If the RadTreeView does not have node, the Property Builder is closed when the Color Selector button is clicked.
When the ShowLines property is enabled and load on demand hierarchy is uses, the node link lines are not rendered properly.
When you add a new node in self-referencing hierarchy, several nodes are added on random levels. In addition, if you remove an existing node, a NullReferenceException is thrown. test project: using System.Data; using System.Windows.Forms; using Telerik.WinControls.UI; namespace Lab.Tree { public partial class TreeSelfReferenceAddFrom : Form { private RadTreeView treeView = new RadTreeView(); public TreeSelfReferenceAddFrom() { InitializeComponent(); treeView.Dock = DockStyle.Fill; treeView.Parent = this; treeView.AllowDefaultContextMenu = true; treeView.AllowAdd = true; treeView.AllowEdit = true; treeView.AllowDrop = true; treeView.AllowDragDrop = true; treeView.AllowRemove = true; DataTable table = new DataTable(); table.Columns.Add("ID"); table.Columns.Add("ParentID"); table.Columns.Add("Name"); table.Rows.Add(1, 0, "Name1"); table.Rows.Add(2, 0, "Name2"); table.Rows.Add(3, 0, "Name3"); table.Rows.Add(4, 1, "Name5"); table.Rows.Add(5, 1, "Name6"); table.Rows.Add(6, 3, "Name6"); treeView.DisplayMember = "Name"; treeView.ChildMember = "ID"; treeView.ParentMember = "ParentID"; treeView.DataSource = table; } } }