Completed
Last Updated: 20 Mar 2023 13:22 by ADMIN
Add a possibility to set the auto-expand delay on drag-drop in RadTreeView.
Completed
Last Updated: 23 Dec 2011 08:14 by ADMIN
After executing the following code and checking the checkbox of the node, a NullReferenceException is thrown:

this.radTreeView1.BeginUpdate(); 
this.radTreeView1.Nodes.Clear();
radTreeView1.Nodes.Add(new RadTreeNode("name")); 
this.radTreeView1.EndUpdate();
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: 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: 24 Nov 2011 10:47 by ADMIN
FIX. RadTreeView - the GradientStyle property of RadTreeNode is overriden by the theme, even though it is set locally
The first part of the issue, regarding RadTreeNode.BackColor is addressed.
There is no issue with the persistance of GradientStyle property. To persist the GradientStyle property you should set its value explicitly. Here is an example:
void radTreeView1_NodeFormatting(object sender, TreeNodeFormattingEventArgs e)
{
if (radTreeView1.SelectedNode != null)
{
if (e.Node == radTreeView1.SelectedNode)
{
e.NodeElement.BackColor = Color.Yellow;
e.NodeElement.BackColor2 = Color.White;
e.NodeElement.GradientStyle = Telerik.WinControls.GradientStyles.Linear;
e.NodeElement.DrawFill = true;
e.NodeElement.NumberOfColors = 2;
return;
}
}
e.NodeElement.ResetValue(LightVisualElement.BackColorProperty, Telerik.WinControls.ValueResetFlags.Local);
e.NodeElement.ResetValue(LightVisualElement.BackColor2Property, Telerik.WinControls.ValueResetFlags.Local);
e.NodeElement.ResetValue(LightVisualElement.GradientStyleProperty, Telerik.WinControls.ValueResetFlags.Local);
e.NodeElement.ResetValue(LightVisualElement.DrawFillProperty, Telerik.WinControls.ValueResetFlags.Local);
e.NodeElement.ResetValue(LightVisualElement.NumberOfColorsProperty, Telerik.WinControls.ValueResetFlags.Local);
}
Completed
Last Updated: 30 Sep 2014 07:43 by Jesse Dyck
1. Create a new project with RadTreeView
2. Handle the NodeCheckedChanged event
3. Call the ExpandAll method for the checked node when handling this event
4. Run the project and check the first node
Unplanned
Last Updated: 30 Mar 2016 13:32 by ADMIN
Workaround: 
private void radTreeView1_NodeFormatting(object sender, TreeNodeFormattingEventArgs e)
{
    e.NodeElement.ContentElement.TextAlignment = ContentAlignment.MiddleCenter;
}
Completed
Last Updated: 26 Oct 2011 06:27 by Svetlin
Improve the TreeViewDragDropService extensibility by allowing replacing the default remove behavior with copy behavior.
Completed
Last Updated: 10 Oct 2011 02:20 by Svetlin
ValueValidating and ValidationError are fired twice when message box is shown in the event handler of ValidationError event.
Completed
Last Updated: 21 Sep 2011 06:18 by ADMIN
1. Create a new project containing a RadTreeView
2. Add some nodes
3. On a Button.Click event call the Collapse method for the selected node
4. Run the application and click the button
Completed
Last Updated: 16 Sep 2011 08:30 by ADMIN
There should be a convenient way to hide the expander icon and to show lines when using full lazy mode.
Completed
Last Updated: 15 Sep 2011 06:58 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: TreeView
Type: Bug Report
1
When i have the root nodes loaded, but there are more nodes than fit in the visible area of the treeview, the scrollbar is not automatically shown. I've tried setting the AutoScroll option to true, but that doesn't help.
Completed
Last Updated: 14 Sep 2011 04:51 by Svetlin
When the ShowLines property is set to true, the lines that link nodes in RadTreeView are not rendered appropriately for some levels.
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.
Completed
Last Updated: 12 Sep 2011 11:23 by ADMIN
Buttons are not visible when using custom DPI settings in RadTreeView property builder.
Completed
Last Updated: 05 Sep 2011 05:23 by Svetlin
Created by: Svetlin
Comments: 0
Category: TreeView
Type: Bug Report
1
There is no way to reset the style of node to its default one by using its Style property.
Completed
Last Updated: 05 Sep 2011 05:20 by Svetlin
While a node is dragged and right mouse button is clicked, the dragged node is replaced with the selected node.
Completed
Last Updated: 31 Aug 2011 04:49 by ADMIN
SelectedNodeChanged event not owrk properly during remove operation of SelectedNode
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: 24 Aug 2011 08:03 by ADMIN
FIX RadTreeView - the CheckedNodes property should return the number of the logical checked nodes, not the visual once
Completed
Last Updated: 12 Aug 2011 07:04 by Svetlin
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.