This is a migrated thread and some comments may be shown as answers.

Busy indicator is not working on RadWindow

4 Answers 191 Views
Window
This is a migrated thread and some comments may be shown as answers.
Triet Nguyen Cong
Top achievements
Rank 2
Triet Nguyen Cong asked on 29 Jun 2010, 11:31 AM
Hi Telerik team,

I tried to use busy indicator on RadWindow, but it seems is not working. I use busy indicator from namespace:

xmlns

 

 

:Controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit"

Could you give me a solution for this to work around?
Thanks,
Triet

 

4 Answers, 1 is accepted

Sort by
0
Pana
Telerik team
answered on 02 Jul 2010, 08:00 AM
Hi Triet Nguyen Cong,

The beta of 2010.Q2 is already released and we have RadBusyIndicator inside. You can use it like this:

<UserControl
    x:Class="SilverlightApplication5.MainPage"
    Width="640" Height="480">
  
    <Grid x:Name="LayoutRoot" Background="White">
        <telerik:RadWindow x:Name="TheWindow" Header="RadWindow" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="122,128,102,115">
            <telerik:RadBusyIndicator IsBusy="True">
                <telerik:RadScheduler />
            </telerik:RadBusyIndicator>
        </telerik:RadWindow>
        <!-- NOTE: Clicking this invokes: this.TheWindow.ShowDialog(); -->
        <telerik:RadButton Content="Button" Height="27" Margin="246,0,234,68" VerticalAlignment="Bottom" Click="RadButton_Click" />
    </Grid>
</UserControl>

Imagine the RadScheduler there load appointments from service. You set the IsBusy to true on the RadBusyIndicator while you are loading the appointments and when you load them and feed the results in the AppointmentSource of the scheduler you set the IsBusy to false.

Of course we would not limit you to use only our controls so you can use the toolkit one. Only it wont have theme to much our themes. I believe you can work with it pretty much the same way.

Greetings,
Panayot
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
Triet Nguyen Cong
Top achievements
Rank 2
answered on 03 Jul 2010, 04:34 AM
Thanks Panayot !

I will wait Q2 2010 release. It has nice controls what I expect like: Rad RichTextbox and RadBusyIndicator.
0
GVera
Top achievements
Rank 1
answered on 21 Jul 2010, 06:01 PM
Hi,

I wrapped a WPF Grid with the RadBusyIndicator and is set to IsBusy = false.  On the code behind, when  button is clicked I set  the IsBusy = true, wait until the event is finished, and then set it back to IsBusy = false.  It is not working.  I never see the indicator.  Now, if a RadWindow.Alert is called, then I can see the indicator behind the RadWindow alert.  Any clue?

Thanks.
0
Pana
Telerik team
answered on 23 Jul 2010, 12:58 PM
Hi Gabriel Vera,

This is a Silverlight thread while you are posting for WPF. You may consider opening a WPF post for that matter. For me the following code works fine:

<Window x:Class="RadControlsWpfApp1.MainWindow"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <telerik:RadBusyIndicator IsBusy="True">
            <telerik:RadGridView />
        </telerik:RadBusyIndicator>
    </Grid>
</Window>

Can you sen us some xaml that reproduces the problem (a working project would be even better) in a new support ticket so we may check the problem for you?

Sincerely yours,
Panayot
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
Tags
Window
Asked by
Triet Nguyen Cong
Top achievements
Rank 2
Answers by
Pana
Telerik team
Triet Nguyen Cong
Top achievements
Rank 2
GVera
Top achievements
Rank 1
Share this question
or