I followed your great documentation on Export RadGrid content to Excel/Word/CSV/PDF with Ajax enabled . It works flawlessly - the export itself.
My javascript code is very close to the example code provided:
But after exporting the AJAX remains disabled. How do I re-enable AJAX after the RadGrid has been exported? Do i need to refresh the whole page or is there something like "radGrid.Re-EnableAJAX()" via Javascript?
Maybe you could update your documentation on re-enabling Ajax as well.
My javascript code is very close to the example code provided:
function requestStart(sender, args) {
if (args.get_eventTarget().indexOf("lnkExportExcel") >= 0)
args.set_enableAjax(false);
}
But after exporting the AJAX remains disabled. How do I re-enable AJAX after the RadGrid has been exported? Do i need to refresh the whole page or is there something like "radGrid.Re-EnableAJAX()" via Javascript?
Maybe you could update your documentation on re-enabling Ajax as well.