When ExportToExcel is called, and OnBiffExporting is triggerred. But we don't enable ajax on the post back using this ClientEvents-OnRequestStart for the RadAjaxPanel:
function onRequestStart(sender, args)
{
if (args.get_eventTarget() == "btnExport") {
args.set_enableAjax(false);
}
else {
document.body.style.cursor = "wait";
}
return true;
}
Is there anyway to detect when the file has been generated so we could manually put up a wait state and then turn off the wait state when the file has been presented to the user?
Thanks
function onRequestStart(sender, args)
{
if (args.get_eventTarget() == "btnExport") {
args.set_enableAjax(false);
}
else {
document.body.style.cursor = "wait";
}
return true;
}
Is there anyway to detect when the file has been generated so we could manually put up a wait state and then turn off the wait state when the file has been presented to the user?
Thanks