This question is locked. New answers and comments are not allowed.
Hi...
We are building an application using RadTabManager. On one specific view, the RadBusyIndicator runs well up until a certain time.
Here's the code for the view : no rocket science here... The BusyIndicator IsBusy property is binded to IsLoading property of my view model. I added a small label (textblock) where the visibility is binded to the same attribute and it works just fine at any time.
I try to understand the issue. I guess that it's not related to the IsLoading property of my view model, as I would face the same issue with my textblock.
Maybe someone could give me an advise on how to debug that situation?
Thanks for your help
<Grid> <Grid.ColumnDefinitions> <ColumnDefinition /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <!-- Header with hyperlink --> <frameworkControls:HeaderControl Grid.Row="0" HeaderImageSource="{Binding Path=HeaderImage}" TopLeftAlignText="{Binding Path=RessourceInfo.Description}" BottomLeftAlignText="{Binding Path=SelectedTimesheetType, Converter={StaticResource EnumDescriptionConverter}}" TopRightAlignText="{Binding Path=PeriodDescription}" /> <!--Timesheet header--> <userControls:TimesheetHeader Grid.Row="1" Margin="5,0,5,0" /> <!--Timesheet detail--> <ContentControl Grid.Row="1" Margin="5,0,5,0" regions:RegionManager.RegionName="{Binding Path=ViewId, Converter={StaticResource ChildRegionNameConverter}, ConverterParameter=TimesheetEntryListRegion}" Style="{StaticResource ContentControlStyle}" /> <!--BrokenRules--> <frameworkControls:FlattenedBrokenRulesControl Grid.Row="2" MaxHeight="150" /> <!--Wait control--> <telerik:RadBusyIndicator Grid.Row="0" Grid.RowSpan="3" IsBusy="{Binding Path=IsLoading, Mode=OneWay}" BusyContent="{Binding LoadingText}" /> <TextBlock Grid.Row="0" Text="{Binding LoadingText}" FontSize="18" Visibility="{Binding Path=IsLoading, Converter={StaticResource visibilityConverter}}" /> </Grid>