Start - complete callback exports

Start - complete callback exports

rickhrickh Posts: 2Questions: 1Answers: 0

Hi,

I want to show a spinner when the libraries are exporting the data to Excel / PDF. Currently (if users want to) they can import thousands of rows into a PDF.

Im using this in Jquery for ajax calls:
$(document).ajaxStart(function () {
$("#spinner").show();
}).ajaxComplete(function () {
$("#spinner").hide();
});

Now i want to show and hide the same spinner when a pdf or excel is being generated.

Can you tell me if that functionality is available, if so how to implement it?

Regards,

Rick

Answers

This discussion has been closed.