We have a Grid with Export buttons. The export functions as it should going to a new window. When we click to go to another page on the grid it suddenly loses all paging, the command row, and even data in one of the columns. It appears that when it exports it reformats the grid to remove paging and commands but then it doesn't enable the them again so when the grid posts back to get to the next page, it returns the grid w/o formatting. We are using advanced data binding. Here's some code snippets. Does anyone know how to get around this? Thanks.
<
telerik:RadGrid
ID
=
"BusinessGrid"
runat
=
"server"
AutoGenerateColumns
=
"False"
CellSpacing
=
"0"
GridLines
=
"None"
AllowPaging
=
"True"
AllowSorting
=
"True"
OnNeedDataSource
=
"BusinessGrid_NeedDataSource"
Height
=
"375px"
Width
=
"100%"
PageSize
=
"25"
>
.
.
.
<
ExportSettings
HideStructureColumns
=
"true"
IgnorePaging
=
"true"
OpenInNewWindow
=
"true"
ExportOnlyData
=
"true"
>
<
Pdf
PageWidth
=
"297mm"
PageHeight
=
"210mm"
/>
<
Pdf
PageWidth
=
"297mm"
PageHeight
=
"210mm"
/>
</
ExportSettings
>