Completed
Last Updated: 24 Nov 2014 12:51 by ADMIN
Title says it all really. It should be possible to expand a node and force the parent nodes, all the way up the tree to expand too.

Likewise for Collapse.

-- 
Stuart
Completed
Last Updated: 01 Jun 2020 15:47 by ADMIN
At the moment when disabling a RadTreeNode on server/client side the complete node gets disabled with the CheckBox.
We had a use case where we would like the node to stay functional (collapsable/expandable/clickable/hover-effect) but only the checkbox to become disabled.
As this can't be achieved with the RadTreeView we had to build a work-around for that. Most likely people in need of this feature make a new HTML-variable to store/transmit/apply the state of the checkbox since the manipulation of the Checkboxes gets lost in a postback.

This would have to be implemented as a server/client-feature as it is with the enabled/disabled-state of the RadTreeNode.

Kind regards
Completed
Last Updated: 27 Oct 2014 08:34 by ADMIN
Created by: francesco
Comments: 1
Category: TreeView
Type: Feature Request
2
Possibility to bind to a treeview a structure where the Id and the parent id is a Guid instead of a numeric value
Declined
Last Updated: 06 Nov 2014 12:38 by ADMIN
I know that the doc's specifically say that it doesn't do this, but it should. Further both the server- and client- side events should fire.

This is true of the RadTreeView as well as any of the newer controls that include a TreeView in their core functionality, (DropdownTree, TreeList).
Unplanned
Last Updated: 03 Nov 2020 14:57 by ADMIN
It would be nice to have the ability to check/uncheck a range of consecutive check boxes in a tree view, for example by clicking the starting check box  and shit-clicking the ending check box.

I would like to check a range of nodes as shown in the attachment, without checking one at a time.
Unplanned
Last Updated: 26 Mar 2024 12:00 by ADMIN
Scheduled for 2024 Q2
Created by: David
Comments: 0
Category: TreeView
Type: Feature Request
2

WAVE tool indicates errors in RadTreeView when CheckBoxes are enabled for the Control:

Completed
Last Updated: 04 Feb 2015 18:34 by ADMIN
ADMIN
Created by: Plamen
Comments: 1
Category: TreeView
Type: Feature Request
1

			
Declined
Last Updated: 06 Nov 2014 11:34 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: TreeView
Type: Feature Request
1
ADD: Copy node on Drag And Drop TreeView
Unplanned
Last Updated: 01 Aug 2016 11:49 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: TreeView
Type: Feature Request
1
At the moment it is not possible to rebind the RadTreeView on the client if the datasource is changed when treeview is bound to a ClientDataSource or WebService.

Scenarios: 
- Changed nodes on the server (database) cannot be refreshed on the client.
- TreeView is populated based on a custom parameter value.
Completed
Last Updated: 15 Jun 2021 12:31 by ADMIN
I think that TreeView incorrectly handles the case of  a drop beneath a node that is expanded.

When a node (with or without children) is _not_ expanded, then dropping directly beneath (meaning lower down on the page) that node indicates that the node should be made the next sibling of the node.

-  A
+ B
------   <- Drop indicator means that dropping here will cause the dropped node to be the next sibling of B, which makes sense.
-  C

This case makes perfect sense.

However, when the node is expanded, the drop indicator doesn't change it's behavior, and I think it should.

-  A
+ B
------   <--- Dropping here will cause the dropped node to be the next sibling of B, but this is not visually where it will appear in the tree.
    - B.1
    - B.2
<--- This is where the node will appear after drop.
-  C

This is counter-intuitive to most people.  People think that dropping between B and B.1 would make the dropped item to become a child of B and a prior sibling of B.1.  But instead, it has the same effect as if the B node wasn't expanded and adds the new dropped node as the next sibling of B.  Note that in this case, the newly dropped node doesn't show up where it was dropped.  When a node doesn't appear in the tree where it was dropped, people assume that that's a bug. 

To see the issue, go here:

http://demos.telerik.com/aspnet-ajax/treeview/examples/functionality/draganddropnodes/defaultcs.aspx

In the "RadTreeView1" treeview, try to drag the "Deleted Items" item to be the last item in the list (but not a child of "Search Folders").  If you drag toward the bottom of the tree, after you drag down past "Unread Mail", you see the drop indicator that shows that you can drop to make it be the next sibling of "Unread Mail".  If you keep dragging down, you _don't_ see an indicator that you can drop to make the next sibling of "Search Folders".

However, if you drag between "Search Folders" and "Form Follow Up", then you _will_ see an indicator that shows that the item will be made the next sibling of "Search Folders".  And if you drop there, it will indeed be made the next sibling of "Search Folders", but of course it will appear at the bottom of the tree (not where you dropped it).

The kendo TreeView has the same behavior as the RadTreeView.  However, I have found some TreeViews that handle it in the way I would prefer.  See http://mbraak.github.io/jqTree/  for an example. 
Declined
Last Updated: 27 May 2021 15:28 by ADMIN
Created by: Douw
Comments: 1
Category: TreeView
Type: Feature Request
1
Hello,
Please add support to bind to System.Dynamic.DynamicObject: 
https://msdn.microsoft.com/en-us/library/system.dynamic.dynamicobject%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
Regards,
Douw
Unplanned
Last Updated: 26 Apr 2023 09:53 by Isha
Created by: Isha
Comments: 0
Category: TreeView
Type: Feature Request
1
Currently, the TreeView is expecting touch events (touchstart, touchmove, touchend) to be triggered by touch devices,  while the Magic keyboard sends mouse events.
Completed
Last Updated: 11 Nov 2014 11:46 by ADMIN
Declined
Last Updated: 10 Mar 2014 09:15 by ADMIN
Completed
Last Updated: 31 May 2021 14:40 by ADMIN
Created by: swegele
Comments: 1
Category: TreeView
Type: Feature Request
0
The RadTreeView adds a CSS class to selected nodes "rtSelected".  Is it possible to fire an event then, since you know when you are adding that class?

If I were to do a jQuery each on the <li> elements and subscribe to changes in the attribute "Class" I could probably mimic similar behavior.  

I have noticed this feature has been desired for several years.  
The work-arounds suggested by your staff are basically to capture onKeyPressing event and check for a newly selected node after a setTimeout.  This works but is more like a hammer to kill a fly.

Thank you
Sean