This question is locked. New answers and comments are not allowed.
Paul Lewis
Top achievements
Rank 1
Paul Lewis
asked on 15 Sep 2010, 12:43 PM
Hi,
Im having problems with the busyindicator falling behind other controls such as the map, how can i make it appear on top
Thanks
Im having problems with the busyindicator falling behind other controls such as the map, how can i make it appear on top
Thanks
3 Answers, 1 is accepted
0
Hi Paul,
the Telerik team
Could you please specify which are these controls? Is this the RadMap or other map control? Could you please give us more information or/and sample running project illustrating the behavior? it would be very helpful.
I will be glad to assist you further.
Regards,
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
Paul Lewis
Top achievements
Rank 1
answered on 29 Sep 2010, 11:53 AM
Hi,
The controls i am using are all RAD.
in the example below i cannot see the indicator, if i change the indicator to be in column 2 the indicator is visible, I really need the indicator to appear over the other controls such as the chart and map. (setting isbusy = true in the control loaded event)
This usercontrol is the content for a tileview which is my main page
The controls i am using are all RAD.
in the example below i cannot see the indicator, if i change the indicator to be in column 2 the indicator is visible, I really need the indicator to appear over the other controls such as the chart and map. (setting isbusy = true in the control loaded event)
This usercontrol is the content for a tileview which is my main page
<UserControl x:Class="Customer360.Sales.SalesMain" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"> <Grid x:Name="LayoutRoot" Background="White"> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"></ColumnDefinition> <ColumnDefinition Width="*"></ColumnDefinition> <ColumnDefinition Width="*"></ColumnDefinition> </Grid.ColumnDefinitions> <Grid.Resources> <DataTemplate x:Key="TickboxExpander"> <StackPanel Orientation="Horizontal" Margin="5"> <CheckBox IsChecked="{Binding IsChecked, Mode=TwoWay}" Margin="0 0 5 0" /> <TextBlock Text="{Binding Description}" Width="150" /> </StackPanel> </DataTemplate> </Grid.Resources> <StackPanel> <telerik:RadPanelBar VerticalAlignment="Stretch" HorizontalAlignment="Stretch" x:Name="radPanelBar" Grid.Column="0" Width="250"> <telerik:RadPanelBarItem IsExpanded="True" ItemsSource="{Binding Performance}" ItemTemplate="{StaticResource TickboxExpander}"> <telerik:RadPanelBarItem.Header> <TextBlock Text="Safety Options" Margin="5 4 5 5" /> </telerik:RadPanelBarItem.Header> </telerik:RadPanelBarItem> </telerik:RadPanelBar> <ItemsControl ItemsSource="{Binding CheckedItems}"> <ItemsControl.ItemTemplate> <DataTemplate> <Grid Margin="5 5 20 0"> <TextBlock Text="{Binding Description}" HorizontalAlignment="Left" /> </Grid> </DataTemplate> </ItemsControl.ItemTemplate> </ItemsControl> </StackPanel> <telerik:RadBusyIndicator x:Name="ChartBusy" Grid.Column="1" ></telerik:RadBusyIndicator> <telerik:RadChart Grid.Column="1" Name="Sales" VerticalAlignment="Top" /> </Grid></UserControl>0
Paul Lewis
Top achievements
Rank 1
answered on 01 Oct 2010, 06:08 PM
Sorry my mistake,
I was placing the busy indicator over the control using Grid.Row instead of wrapping the control in the tag
I was placing the busy indicator over the control using Grid.Row instead of wrapping the control in the tag