This question is locked. New answers and comments are not allowed.
public MainPage()
{
InitializeComponent();
DataContext = App.Model;
this.Dispatcher.BeginInvoke(new Action(() =>
{
radbusyIndicator.IsRunning = true;
SampleData.Data.getInfo();
SampleData.Data.getData();
radbusyIndicator.IsRunning = false;
}));
}
5 Answers, 1 is accepted
0
Hello Noel,
Can you please try setting the IsRunning property outside of the Action and resetting it to false just as you do at the moment?
All the best,
Deyan
the Telerik team
Can you please try setting the IsRunning property outside of the Action and resetting it to false just as you do at the moment?
All the best,
Deyan
the Telerik team
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0

Noel
Top achievements
Rank 1
answered on 24 Apr 2013, 06:50 AM
hi thanks for the reply.
I tried the way you suggested, but still it doesn't show.
if i comment the
then it shows , but doesn't disappear after the data is loaded, which is obvious.
I tried the way you suggested, but still it doesn't show.
if i comment the
radbusyIndicator.IsRunning = false;
then it shows , but doesn't disappear after the data is loaded, which is obvious.
public MainPage()
{
InitializeComponent();
DataContext = App.Model;
radbusyIndicator.IsRunning = true;
this.Dispatcher.BeginInvoke(new Action(() =>
{
SampleData.Data.getInfo();
SampleData.Data.getData();
radbusyIndicator.IsRunning = false;
}));
}
0
Hi Noel,
So it seems that your data is fetched too fast. The Busy Indicator shows up with a fade-in animation which takes some time. I believe because the data arrives too fast, the indicator does not have enough time to show up before it is again closed.
Greetings,
Deyan
the Telerik team
So it seems that your data is fetched too fast. The Busy Indicator shows up with a fade-in animation which takes some time. I believe because the data arrives too fast, the indicator does not have enough time to show up before it is again closed.
Greetings,
Deyan
the Telerik team
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0

Noel
Top achievements
Rank 1
answered on 24 Apr 2013, 06:56 AM
but the data is shown on the page after some 15 sec, which i dont think is fast
0
Hi Noel,
Thanks for writing back.
It seems that there is something specific in your project that prevents the Busy Indicator from showing up. I cannot exactly say what this is by looking into the snippet you've sent me so I would like to ask you for a sample project that reproduces the case. This will help me debug it on my side and see what goes wrong.
Note that you will have to open a new support ticket in order to be able to attach your project.
Thanks for your time.
Regards,
Deyan
the Telerik team
Thanks for writing back.
It seems that there is something specific in your project that prevents the Busy Indicator from showing up. I cannot exactly say what this is by looking into the snippet you've sent me so I would like to ask you for a sample project that reproduces the case. This will help me debug it on my side and see what goes wrong.
Note that you will have to open a new support ticket in order to be able to attach your project.
Thanks for your time.
Regards,
Deyan
the Telerik team
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.