If I don't use RadAjaxManager1, the page postback and saves the scroll position just fine.
<ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True">
<Selecting AllowRowSelect="False"></Selecting>
<Scrolling AllowScroll="True" UseStaticHeaders="False" SaveScrollPosition="true" ScrollHeight="300" />
</ClientSettings>
If I use the RadAjaxManager1 as below - it scrolls to the top everytime i select a row on the grid via server side by clicking on the select GridButtonColumn. The scroll position is lost.
<telerik:AjaxSetting AjaxControlID="rgMain">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="fvDetails"></telerik:AjaxUpdatedControl>
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rgMain">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rgMain"></telerik:AjaxUpdatedControl>
</UpdatedControls>
</telerik:AjaxSetting>
<ClientSettings AllowColumnsReorder="True" ReorderColumnsOnClient="True">
<Selecting AllowRowSelect="False"></Selecting>
<Scrolling AllowScroll="True" UseStaticHeaders="False" SaveScrollPosition="true" ScrollHeight="300" />
</ClientSettings>
If I use the RadAjaxManager1 as below - it scrolls to the top everytime i select a row on the grid via server side by clicking on the select GridButtonColumn. The scroll position is lost.
<telerik:AjaxSetting AjaxControlID="rgMain">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="fvDetails"></telerik:AjaxUpdatedControl>
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="rgMain">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rgMain"></telerik:AjaxUpdatedControl>
</UpdatedControls>
</telerik:AjaxSetting>