Hi Telerik team,
I have an issue with the Export to Excel-button. The button works fine until I perform an action on the radgrid (such as removing/adding columns, sorting or paging) - after that, the Export to Excel -button no longer has any effect.
My radgrid is ajaxified through a RadAjaxmanager. It does not reside in any kind of updatepanel. The grid is on a sharepoint page.
I've implemented the necessary disabling of ajax in the clickfunction of the button.
So it seems like the button functionality is broken after an ajax request is made.
Any suggestions?
I have an issue with the Export to Excel-button. The button works fine until I perform an action on the radgrid (such as removing/adding columns, sorting or paging) - after that, the Export to Excel -button no longer has any effect.
My radgrid is ajaxified through a RadAjaxmanager. It does not reside in any kind of updatepanel. The grid is on a sharepoint page.
I've implemented the necessary disabling of ajax in the clickfunction of the button.
function onRequestStart(sender, args) { if (args.get_eventTarget().indexOf("ExportToExcelButton") >= 0) { args.set_enableAjax(false); } }
So it seems like the button functionality is broken after an ajax request is made.
Any suggestions?