After session expired when the user click on any Export icon of the grid. it doesnt fire the session expire event.
We have placed the grid inside a radwindow.Following is the code snippet for the grid.
We tried using PAGE METHODS, it worked in IE .
but its causing problem in chrome and Firefox.
Kindly let me knw if more information is needed from my end.
Thnks in advance.
We have placed the grid inside a radwindow.Following is the code snippet for the grid.
<telerik:RadGrid ID="rgdDisplay" runat="server" AllowPaging="true" PageSize="5" GridLines="Both"
AutoGenerateColumns="true" EnableEmbeddedSkins="false" OnColumnCreated="rgdDisplay_ColumnCreated"
EnableViewState="True" OnNeedDataSource="rgdDisplay_NeedDataSource" CellPadding="0"
AllowMultiRowSelection="true" OnItemDataBound="rgdDisplay_ItemDataBound" OnItemCommand="rgdDisplay_ItemCommand"
HeaderStyle-HorizontalAlign="Left" OnItemCreated="rgdDisplay_ItemCreated">
<ExportSettings HideStructureColumns="false" IgnorePaging="true" ExportOnlyData="true"
FileName="Result" OpenInNewWindow="true">
<Pdf PageHeight="210mm" PageWidth="297mm" PageTitle="Advance Search Result" DefaultFontFamily="Arial Unicode MS"
PageBottomMargin="20mm" PageTopMargin="20mm" PageLeftMargin="20mm" PageRightMargin="20mm" />
</ExportSettings>
<MasterTableView DataKeyNames="PatientId" ClientDataKeyNames="PatientId" EnableColumnsViewState="False"
CommandItemDisplay="Top">
<Columns>
<telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" ItemStyle-Width="2%" />
</Columns>
<CommandItemSettings ShowExportToWordButton="true" ShowExportToExcelButton="true"
ShowExportToCsvButton="true" ShowExportToPdfButton="true" ShowRefreshButton="false"
ShowAddNewRecordButton="false" />
</MasterTableView>
<ClientSettings>
<Selecting AllowRowSelect="true" UseClientSelectColumnOnly="true" EnableDragToSelectRows="false" />
<ClientEvents OnRowSelecting="RowSelecting" OnRowDeselected="RowDeselected" />
</ClientSettings>
<HeaderContextMenu EnableEmbeddedSkins="False">
</HeaderContextMenu>
</telerik:RadGrid>
AutoGenerateColumns="true" EnableEmbeddedSkins="false" OnColumnCreated="rgdDisplay_ColumnCreated"
EnableViewState="True" OnNeedDataSource="rgdDisplay_NeedDataSource" CellPadding="0"
AllowMultiRowSelection="true" OnItemDataBound="rgdDisplay_ItemDataBound" OnItemCommand="rgdDisplay_ItemCommand"
HeaderStyle-HorizontalAlign="Left" OnItemCreated="rgdDisplay_ItemCreated">
<ExportSettings HideStructureColumns="false" IgnorePaging="true" ExportOnlyData="true"
FileName="Result" OpenInNewWindow="true">
<Pdf PageHeight="210mm" PageWidth="297mm" PageTitle="Advance Search Result" DefaultFontFamily="Arial Unicode MS"
PageBottomMargin="20mm" PageTopMargin="20mm" PageLeftMargin="20mm" PageRightMargin="20mm" />
</ExportSettings>
<MasterTableView DataKeyNames="PatientId" ClientDataKeyNames="PatientId" EnableColumnsViewState="False"
CommandItemDisplay="Top">
<Columns>
<telerik:GridClientSelectColumn UniqueName="ClientSelectColumn" ItemStyle-Width="2%" />
</Columns>
<CommandItemSettings ShowExportToWordButton="true" ShowExportToExcelButton="true"
ShowExportToCsvButton="true" ShowExportToPdfButton="true" ShowRefreshButton="false"
ShowAddNewRecordButton="false" />
</MasterTableView>
<ClientSettings>
<Selecting AllowRowSelect="true" UseClientSelectColumnOnly="true" EnableDragToSelectRows="false" />
<ClientEvents OnRowSelecting="RowSelecting" OnRowDeselected="RowDeselected" />
</ClientSettings>
<HeaderContextMenu EnableEmbeddedSkins="False">
</HeaderContextMenu>
</telerik:RadGrid>
We tried using PAGE METHODS, it worked in IE .
but its causing problem in chrome and Firefox.
Kindly let me knw if more information is needed from my end.
Thnks in advance.