This question is locked. New answers and comments are not allowed.
Hi,
I am using Telerik tree control inside the busy indicator. When user clicks on a tree node then busy indicator shows that some process is going on. But when user clicks on multiple tree node as soon as the busy indicator stops then multiple tree nodes become hightlighted. It creates ambiguity to user that which node was selected.
When I take out the Telerik tree view code from the busy indicator then Tree works fine.
Below is the code used. I have attached the image as well.
Please Help
I am using Telerik tree control inside the busy indicator. When user clicks on a tree node then busy indicator shows that some process is going on. But when user clicks on multiple tree node as soon as the busy indicator stops then multiple tree nodes become hightlighted. It creates ambiguity to user that which node was selected.
When I take out the Telerik tree view code from the busy indicator then Tree works fine.
Below is the code used. I have attached the image as well.
<telerik:RadBusyIndicator x:Name="BusyInd" HorizontalAlignment="Center" Background="Transparent" VerticalAlignment="Center" BorderThickness="0" >
<
telerik:RadTreeView x:Name="locationTree" LoadOnDemand="locationTree_LoadOnDemand" VerticalAlignment="Top" Margin="0" Grid.Row="1" MinHeight="300" Width="Auto" Height="{Binding Height, ElementName=grdTree}" ExpanderStyle="{StaticResource ExpanderStyle1}" IsLineEnabled="True" Background="White" PreviewSelectionChanged="locationTree_PreviewSelectionChanged" SelectionChanged="locationTree_SelectionChanged">
<telerik:RadTreeView.ItemTemplate>
<telerik:HierarchicalDataTemplate ItemsSource="{Binding SubLocation}">
<StackPanel>
<TextBlock Text="{Binding LOCATION_ID}" />
</StackPanel>
</telerik:HierarchicalDataTemplate>
</telerik:RadTreeView.ItemTemplate>
</telerik:RadTreeView>
</
telerik:RadBusyIndicator>
Please Help