I have the following code:
This works as expected when I click either Excel or CSV export icon. The problem is that after clicking an export icons the first time, no other submits on the page work.
I refresh the page, click Excel, an Excel file is exported. I click CSV, and nothing happens. I click my other submit buttons on the form, and nothing happens.
Anyone have ideas on this?
<telerik:RadGrid ID="AuditRadGrid" runat="server" AllowPaging="true" AllowCustomPaging="true" OnNeedDataSource="AuditRadGrid_NeedDataSource"> <ExportSettings HideStructureColumns="true" IgnorePaging="true"/> <MasterTableView AutoGenerateColumns="false" DataKeyNames="ActivityDate" CommandItemDisplay="Top" CommandItemStyle-HorizontalAlign="Right"> <CommandItemSettings ShowAddNewRecordButton="false" ShowExportToExcelButton="true" ShowExportToCsvButton="true" ShowRefreshButton="false" /> <Columns> <telerik:GridBoundColumn HeaderText="Date" DataField="ActivityDate" Visible="true" /> <telerik:GridBoundColumn HeaderText="Change" DataField="ActivityDescription" Visible="true" /> <telerik:GridBoundColumn HeaderText="Username" DataField="ActivityByUserName" Visible="true" /> </Columns> <PagerStyle AlwaysVisible="true" /> </MasterTableView></telerik:RadGrid>This works as expected when I click either Excel or CSV export icon. The problem is that after clicking an export icons the first time, no other submits on the page work.
I refresh the page, click Excel, an Excel file is exported. I click CSV, and nothing happens. I click my other submit buttons on the form, and nothing happens.
Anyone have ideas on this?