Nothing happens when we click on any of the export to excel or export to CSV , ... buttons.
The code snippet of the grid we are using is as below :-
<
telerik:RadGrid
AutoGenerateColumns
=
"false"
ID
=
"grdxyz"
runat
=
"server"
AllowPaging
=
"True"
AllowSorting
=
"True"
OnNeedDataSource
=
"grdSearchResults_NeedDataSource"
TabIndex
=
"36"
>
<
ExportSettings
HideStructureColumns
=
"False"
ExportOnlyData
=
"False"
IgnorePaging
=
"false"
OpenInNewWindow
=
"true"
FileName
=
"MyRecord"
>
</
ExportSettings
>
<
MasterTableView
PageSize
=
"10"
TableLayout
=
"Auto"
Width
=
"100%"
CommandItemDisplay
=
"Top"
DataKeyNames
=
"myid"
>
<
CommandItemSettings
ShowAddNewRecordButton
=
"false"
ShowRefreshButton
=
"true"
ShowExportToPdfButton
=
"true"
ShowExportToCsvButton
=
"true"
ShowExportToExcelButton
=
"true"
ShowExportToWordButton
=
"true"
/>
Our page hierarchy is as follows. We have a master page which has a contentTemplate. On the child page we have a RadAjaxPanel and the above RadGrid is placed inside this RadAjaxPanel on child page. Has the ajaxification of the grid anything to do with these ??
Also we are using the latest version of telerik i.e v.2011.2.712.40.
Let me know accordingly.