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

Excel export finished event

2 Answers 64 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Maulik Patel
Top achievements
Rank 1
Maulik Patel asked on 11 Apr 2011, 03:14 PM
Hi,

I want to show a progressbar or wait indicator to user when the GridView is exported to excel. Is there any event that is being raised once all data is exported (so that I can hide the wait indicator)? 

Regards,
Maulik

2 Answers, 1 is accepted

Sort by
0
Ivan Ivanov
Telerik team
answered on 14 Apr 2011, 05:01 PM
Hi Maulik Patel,

Unfortunately the current implementation of our exporting freezes the UI thread, so that it will be impossible to make any visual presentation of its progress.

Best wishes,
Ivan Ivanov
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
bkagan98
Top achievements
Rank 1
answered on 14 Apr 2011, 07:57 PM
You may want to try the following:

gridDataView.IsBusy = true;

... your Excel export code here

gridDataView.IsBusy = false;
Tags
GridView
Asked by
Maulik Patel
Top achievements
Rank 1
Answers by
Ivan Ivanov
Telerik team
bkagan98
Top achievements
Rank 1
Share this question
or