Selecting a cell from horizontally scrolled RadGrid with allowed Keyboard Navigationcauses the page to be scrolled to the left in IE 11.
video: https://www.screencast.com/t/4NDOq9Qx
Comment: If the Batch editing is enabled the cell is selected, but the batch editing is not started.
Code to reproduce the issue:
<div style="width: 4000px">
<telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="true" AllowSorting="true" Skin="Telerik" RenderMode="Lightweight"
OnNeedDataSource="RadGrid1_NeedDataSource">
<ClientSettings AllowKeyboardNavigation="true" Scrolling-AllowScroll="true" Scrolling-SaveScrollPosition="true">
<Selecting CellSelectionMode="SingleCell" />
</ClientSettings>
<GroupingSettings ShowUnGroupButton="true"></GroupingSettings>
<MasterTableView CommandItemDisplay="Top" Frame="Border" ShowFooter="true" AllowPaging="True" AllowCustomPaging="true" ShowGroupFooter="true">
</MasterTableView>
</telerik:RadGrid>
</div>