Won't Fix
Last Updated: 08 Jun 2022 07:30 by ADMIN
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>
Won't Fix
Last Updated: 20 Jun 2022 14:40 by ADMIN
Won't Fix
Last Updated: 14 Sep 2021 11:52 by ADMIN

Update: Items is marked as Won't Fix as the behavior is expected and is due to the nature of the batch mode. Changing it will result in a breaking change.


			
Won't Fix
Last Updated: 17 Nov 2017 11:24 by ADMIN
If the selection mode of the Grid is different than row selection, no cell of the detailed grid gets selected. The bug is introduced with version 2016 R3 SP1

Steps to reproduce:
1. Run the following demo locally  http://demos.telerik.com/aspnet-ajax/grid/examples/hierarchy/declarative-relations/defaultcs.aspx

2. and add this configuration:
       <telerik:RadGrid ...>
            <ClientSettings>
                <Selecting CellSelectionMode="SingleCell" />
            </ClientSettings>
Won't Fix
Last Updated: 09 Mar 2016 16:23 by ADMIN
The issue appears in Classic render mode and is due to the use of an image for background which does not stretches(which is a limitation). A possible workaround is to include the following CSS:

.rgHeaderWrapper div.rgHeaderDiv{
 background:none;

}
Won't Fix
Last Updated: 14 Apr 2022 14:49 by ADMIN
Created by: Manish
Comments: 1
Category: Grid
Type: Bug Report
0
We have telerik Radgrid on the pages in our application. When viewed in the windows phone 8 browser the horizontal touch scroll does not work. Moreover the color of the scrollbar is almost invisible. Requests anyone to please suggest how to overcome this issue. we tried providing a skin as "Balck Metro touch" and also tried enabling "embedded skins" but none of this works.
Won't Fix
Last Updated: 22 Jun 2015 11:57 by ADMIN
Won't Fix
Last Updated: 10 Aug 2021 14:22 by ADMIN
Hi,
I updated my code with version 2013.3.1114, but the method get_cell() of the GridDataItem has become case-sensitive.
I have some codes that with version 2012.3.1016 that was working correctly.
Is possibile to have the choice of case-sensitive / insensitive or at least have backward comaptibility ?
Won't Fix
Last Updated: 20 Jun 2022 14:41 by ADMIN
The problem could be replicated in the attached page.
Won't Fix
Last Updated: 10 Aug 2021 13:58 by ADMIN
Won't Fix
Last Updated: 01 Oct 2015 12:01 by ADMIN
Won't Fix
Last Updated: 20 Jun 2022 14:37 by ADMIN
RadGrid VirtualScrolling does not scroll to the bottom when StaticHeaders are enabled. The issue could be observed in the attached project.
Won't Fix
Last Updated: 14 Aug 2015 07:32 by ADMIN
Won't Fix
Last Updated: 02 Jul 2019 07:21 by ADMIN
When trying to batch edit cell values of the Grid via e.g., RadEditor (GridHTMLEditorColumn or RadEditor in EditItemTemplate of GridTemplateColumn) the cell value always result to a plain text. 
Won't Fix
Last Updated: 12 Feb 2016 11:05 by ADMIN
The issue will not be fixed since there is a big chance to introduce a breaking change. Nevertheless, there is a simple solution that could be use. The solution is to manually remove the hidden column from the ClientState on the client.

    <script type="text/javascript">
        function test() {
            var gridID = $telerik.$(".RadGrid")[0].id;
            var clientState = document.getElementById(gridID + "_ClientState");
            var value = clientState.value;
            if (value) {
                var parsedValue = JSON.parse(value);
                parsedValue.hidedColumns = [];
                clientState.value = JSON.stringify(parsedValue);
            }
        }
    </script>