I have a grid in an ajaxpanel:
<
telerik:RadAjaxPanel
ID
=
"RadAjaxPanel1"
runat
=
"server"
Height
=
"100%"
Width
=
"100%"
LoadingPanelID
=
"RadAjaxLoadingPanel1"
>
<
table
><
tr
><
td
valign
=
"top"
>
<
telerik:RadGrid
ID
=
"radGridABC"
runat
=
"server"
Width
=
"800px"
AutoGenerateColumns
=
"False"
GridLines
=
"None"
OnItemDataBound
=
"radGridABC_ItemDataBound"
Skin
=
"MainGrid"
EnableEmbeddedSkins
=
"false"
PageSize
=
"10"
AllowPaging
=
"true"
>
<
PagerStyle
Mode
=
"NextPrevAndNumeric"
></
PagerStyle
>
<
ClientSettings
EnableRowHoverStyle
=
"true"
>
<
Selecting
AllowRowSelect
=
"True"
/>
<
ClientEvents
OnRowSelecting
=
"RowSelected"
/>
</
ClientSettings
>
After clicking the next page on pager, the page goes post back and loses the instance of grid. only this line remains:
<
input
id
=
"radGridABC_ClientState"
name
=
"radGridABC_ClientState"
type
=
"hidden"
autocomplete
=
"off"
>
any ideas why??