Hi,
I have noticed that RadGridView has a nice "waiting animation" (or however you call it) while rendering the data it received. The thing I want to do is have this animation not only when the data is rendered, but also while the service call executes. So just before my service call I would like to start this animation manually. Can I do that somehow?
Thanks :)
I have noticed that RadGridView has a nice "waiting animation" (or however you call it) while rendering the data it received. The thing I want to do is have this animation not only when the data is rendered, but also while the service call executes. So just before my service call I would like to start this animation manually. Can I do that somehow?
Thanks :)
6 Answers, 1 is accepted
0
Accepted
Hi boris,
You can use IsBusy property to achieve this. Please check this demo for more info:
http://demos.telerik.com/silverlight/#GridView/DomainDataSource
Best wishes,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
You can use IsBusy property to achieve this. Please check this demo for more info:
http://demos.telerik.com/silverlight/#GridView/DomainDataSource
Best wishes,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
boris
Top achievements
Rank 1
answered on 25 Sep 2009, 02:47 PM
Woow that was quick!
Thanks :)
Thanks :)
0
Marcin
Top achievements
Rank 1
answered on 31 May 2010, 02:19 PM
Hello Telerik Team.
This demo is not working now. Could you tell me, what could I do?
Greetings,
Marcin
This demo is not working now. Could you tell me, what could I do?
Greetings,
Marcin
0
Hi,
Here is the new link:
http://demos.telerik.com/silverlight/silverlight3/#GridView/DomainDataSource
Greetings,
Vlad
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.
Here is the new link:
http://demos.telerik.com/silverlight/silverlight3/#GridView/DomainDataSource
Greetings,
Vlad
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
Marcin
Top achievements
Rank 1
answered on 31 May 2010, 04:06 PM
Thanks Vlad,
But if my dataSource is WCF Web Service or I created this in code behind, what should I do? (in XAML I have only RadGridView declaration. All operation, I'm doing in code behind)
Greetings,
Marcin
But if my dataSource is WCF Web Service or I created this in code behind, what should I do? (in XAML I have only RadGridView declaration. All operation, I'm doing in code behind)
Greetings,
Marcin
0
Hi Marcin,
Yavor Georgiev
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.
You call the methods on your WCF service proxy asynchronously, right? So, whenever you begin an operation on your WCF service, set RadGridView.IsBusy to true, and when the async operation complete event handler fires, set it back to false.
Greetings,Yavor Georgiev
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.