5 Answers, 1 is accepted
0
Hi Billy G,
Please check this help article:
http://www.telerik.com/help/silverlight/radtreeview-features-drag-and-drop.html
you need to set the IsDropAllowed property to the items.
Greetings,
Valentin.Stoychev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Please check this help article:
http://www.telerik.com/help/silverlight/radtreeview-features-drag-and-drop.html
you need to set the IsDropAllowed property to the items.
Greetings,
Valentin.Stoychev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Billy G
Top achievements
Rank 1
answered on 13 May 2010, 05:34 PM
I looked over that article however My Tree Is Databound along with using the load on Demand.. how would you set it in this instance
0
Hi Billy G,
You can use a style in your case and to set the property in the style:
<Style TargetType="telerikNavigation:RadTreeViewItem">
<Setter Property="IsDropAllowed" Value="False" />
</Style>
And then just appy this style to your treview.
All the best,
Valentin.Stoychev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
You can use a style in your case and to set the property in the style:
<Style TargetType="telerikNavigation:RadTreeViewItem">
<Setter Property="IsDropAllowed" Value="False" />
</Style>
And then just appy this style to your treview.
All the best,
Valentin.Stoychev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Billy G
Top achievements
Rank 1
answered on 13 May 2010, 09:02 PM
I am not using RadTreeViewItems but HierarchicalDataTemplate
I Just want to Set the Whole TREEVIEW to isdropallowed = false.. Surely you have though that someone would want to disable it for the Whole Control.
0
Billy G
Top achievements
Rank 1
answered on 13 May 2010, 09:26 PM
I figured it out thank you for the help
ItemContainerStyle="{StaticResource RadTreeViewitemStyle}"