Hi,
I am using the radTreeView of Silverlight 2009.3. I set the property IsExpandOnDbClickenabled to true. I am using LoadOnDemand
and the event Selected. Whan I double click on an item of the treeview, the first time, the item doesn't expand. The next time,
I double click on this same item it works. It is really strange. Coul you help me please ? How may I resolve my problem ?
Thank you in advance,
<telerikNavigation:RadTreeView
Name="treeView"
Margin="2,10,2,10"
IsExpandOnDblClickEnabled="True"
IsExpandOnSingleClickEnabled="False"
ItemContainerStyle = "{StaticResource MyRadTreeViewItemStyle}"
Foreground="{StaticResource RadTreeViewForegroundBrush}"
ExpanderStyle="{StaticResource ExpanderStyle1}"
IsLoadOnDemandEnabled="True"
LoadOnDemand="RadTreeView_LoadOnDemand"
MouseLeftButtonUp="RadTreeView_MouseLeftButtonUp"
Selected="RadTreeView_Selected">
</telerikNavigation:RadTreeView>
Suzi.