Completed
Last Updated: 09 Apr 2012 04:40 by Svetlin
Hide the AutoScroll property of RadTreeView in design time
Completed
Last Updated: 04 Apr 2012 03:53 by ADMIN
FIX. RadTreeView - SelectedNode and SelectedNodes should be cleared when the DataSource of the control is set to null
test app:
using System;
using System.Data;
using System.Windows.Forms;
using Telerik.WinControls.UI;
namespace Lab.Tree
{
public partial class TreeResetSelectionAfterDataSourceIsSetToNull : MainForm
{
private RadTreeView treeView = new RadTreeView();
public TreeResetSelectionAfterDataSourceIsSetToNull()
{
InitializeComponent();
treeView.Dock = DockStyle.Fill;
treeView.Parent = this;
treeView.BringToFront();
DataTable table = new DataTable();
table.Columns.Add("Id");
table.Columns.Add("Name");
table.Rows.Add("1", "name1");
table.Rows.Add("2", "name2");
table.Rows.Add("3", "name3");
treeView.DisplayMember = "Name";
treeView.DataSource = table;
treeView.MultiSelect = true;
}
protected override void OnButton1Click()
{
Console.WriteLine(treeView.SelectedNodes.Count);
Console.WriteLine(treeView.SelectedNode);
treeView.DataSource = null;
Console.WriteLine("-------------------------------------------");
Console.WriteLine(treeView.SelectedNodes.Count);
Console.WriteLine(treeView.SelectedNode);
}
}
}
Completed
Last Updated: 02 Apr 2012 07:29 by Svetlin
Checked state of the disabled nodes's check boxes is changed after scrolling.
Unplanned
Last Updated: 15 Aug 2017 09:33 by Svetlin
Sort the selected nodes according to their position in the tree
Completed
Last Updated: 17 Oct 2014 08:48 by ADMIN
ADD. RadTreeView - add support for binding the checkboxes of the nodes to a field in the data
Unplanned
Last Updated: 30 Mar 2016 13:28 by Svetlin
The child nodes are aligned to the root nodes when ShowRootLines property is set to false.
Completed
Last Updated: 13 Feb 2014 13:18 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: TreeView
Type: Feature Request
9
ADD. RadTreeView - add NodeRemoving event
Completed
Last Updated: 13 Mar 2012 03:36 by ADMIN
FIX. RadTreeView - the text of disabled nodes is not aligned correctly
Completed
Last Updated: 09 Mar 2012 05:29 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: TreeView
Type: Bug Report
0
I have implemented filtering in radtreeview by using following code in filter button click event:

rtvTaxReturnLines.filter=textFilter.text;

Note: here rtvTaxReturnLines is radtreeview name.

It filter the result by text given by user in textbox.But after filtering if we want to drag and drop some filter results from the treeview to gridview or within the treeview then it is not allowing dragdrop service in filtered result.
Completed
Last Updated: 11 Feb 2014 13:48 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: TreeView
Type: Feature Request
3
So is there an event triggered for added nodes when using a datasource?  I want to set the checked state based on a property on the databound item.  Basically this:

I have a treeview set like this in Q1 2012:
            treeViewProjets.DataSource = ViewModel.Projets;
            treeViewProjets.DisplayMember = @"Nom\Nom";
            treeViewProjets.ValueMember = @"Id\Id";
            treeViewProjets.ChildMember = @"Projets\ObjetsProjet";
            treeViewProjets.NodeAdded += new RadTreeView.RadTreeViewEventHandler(treeViewProjets_NodeAdded);
            treeViewProjets.NodeAdding += new RadTreeView.RadTreeViewCancelEventHandler(treeViewProjets_NodeAdding);
            treeViewProjets.NodeFormatting += new TreeNodeFormattingEventHandler(treeViewProjets_NodeFormatting);

I get a root node and many child nodes created, but the events NodeAdded and NodeAdding are never triggered, NodeFormatting triggers fine.
Completed
Last Updated: 20 Oct 2014 11:49 by ADMIN
ADD. RadTreeView - when pressing a letter from the keyboard, the node starting with this letter should be selected.

Resolution: 
Added two new properties: KeyboardSearchEnabled and KeyboardSearchResetInterval. When set the KeyboardSearchEnabled property to true, user can navigate to an item by typing when RadTreeView is focused. 
You can set how long the user must wait before searching with the keyboard is reset using the KeyboardSearchResetInterval property. 
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: 24 Feb 2012 09:29 by ADMIN
1. Have some tree with nodes and subnodes. Expand some of the nodes one by one until vertical scrollbar appears.
At the same time, there should be more nodes which have subnodes left
2. Do "Expand all" on some other node which is not expanded yet. Code used: "node.ExpandAll()"
Scroll bar reflect the area change and you can scroll up and down, it's ok
3. Do "Collapse all" on same node. Code used: "node.Collapse()"
Completed
Last Updated: 21 Feb 2012 03:06 by Svetlin
Cut, Copy and Paste menu items in default context menu of RadTreeView are not localizable.
Completed
Last Updated: 20 Feb 2012 04:01 by Svetlin
The context menu does not open at the right position when context menu button is used.
Unplanned
Last Updated: 30 Mar 2016 13:29 by Svetlin
Copy and paste in RadTreeView does not copies all properties of RadTreeNode.
Completed
Last Updated: 16 Feb 2012 04:22 by Svetlin
You cannot unsubscribe from the NodeCheckedChanging event of RadTreeView.
Completed
Last Updated: 03 Feb 2012 04:22 by Svetlin
When you clear the child nodes of any node, the RadTreeView is scrolling to its initial position.
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: 16 Jan 2012 06:29 by Svetlin
A NullReferenceException is thrown when the nodes are cleared and new selected nodes are determined.