I have a RadGrid control in my web page(.aspx). It is displaying a list of data. First column of this grid is a link and when link is clicked a scheduler at the last side is updated. When the vertical scrollbar is at the middle or at the end and if a row is clicked the scrollbar is resetting to top, although the particular row is selected and the scheduler is updated as well. This issue is happening only in Internet Explorer. In Google Chrome the scrollbar is working properly. I have set the property SaveScrollPosition to True. Can anyone help me on this.
<telerik:RadGrid ID="RadGridRequests" runat="server"
AutoGenerateColumns="False" GridLines="None"
Height="520px"
onitemdatabound="RadGridRequests_ItemDataBound"
onselectedindexchanged="RadGridRequests_SelectedIndexChanged"
EnableEmbeddedSkins="true" EnableEmbeddedBaseStylesheet="true">
<ClientSettings EnablePostBackOnRowClick="True">
<Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="True">
</Scrolling>
</ClientSettings>