Declined
Last Updated: 03 Nov 2014 10:56 by Elena
In the following scenario it is not working.
1.	Grid populated with data.
2.	Filter applied on one of the columns in the grid. As a result data filtered correctly in the grid.
3.	For e.g 2nd column is moved to 5th column as vice versa.
4.	Again Filter applied on one of the columns in the grid.
5.	Grid data is not filtering as expected and column reorder that we did in point (3) is rolled back. (i.e., 5th column moved to 2nd column, vice versa)


Please help us in fixing this issue.
Unplanned
Last Updated: 16 Jan 2014 09:52 by ADMIN
Currently ExcelML format does not work when both hierarchy and grouping are used.
Declined
Last Updated: 17 Nov 2014 08:07 by Jimmy
Completed
Last Updated: 03 Dec 2014 13:57 by ADMIN
You can use the following temporary workaround in order to avoid the problem:
1. Attach OnGridCreated event handler:
    ...
    <ClientSettings>
         <ClientEvents OnGridCreated="onGridCreated" />
    </ClientSettings>
    ...

2. In the event handler configure the group header according to the number of visible columns in the grid:
          function onGridCreated(sender, args) {
              if ($telerik.isIE7) {
                  var visibleCount = sender.get_masterTableView()._getVisibleColumnsCount();
                  $telerik.$(".rgGroupHeader .rgGroupCol + td", sender.get_element()).attr("colspan", visibleCount);
              }
          }
Completed
Last Updated: 23 Mar 2016 15:19 by ADMIN
Declined
Last Updated: 02 Mar 2022 12:07 by ADMIN
Created by: Tim Weckx
Comments: 1
Category: Grid
Type: Feature Request
1
It would be great if you could set a property on a column (like in WinForms) to hide that column from the column chooser.

e.g. <telerik:GridBoundColumn ShowInColumnChooser="false" />
Completed
Last Updated: 14 Sep 2021 09:37 by ADMIN
Created by: Philipp
Comments: 0
Category: Grid
Type: Bug Report
1
Hi Team Telerik,

i found a bug in RadGrid. This one only appears in Chrome Webbrowser.
Columnresizing only works once per column in chrome. You can see it right the way in your demo-site. Go to the Resizing Demopart and resize one column. Now try to re-resize it. It wont work. 

Best wishes Philipp
Completed
Last Updated: 24 Jun 2016 12:56 by ADMIN
Completed
Last Updated: 07 Apr 2014 13:57 by ADMIN
Completed
Last Updated: 20 Sep 2016 06:40 by ADMIN
Completed
Last Updated: 20 Sep 2016 06:41 by Arnstein
For the time being the following workaround can be used:

CSS:

    <style>
        .RadGrid_Default .RadButton_Simple input {
            border: 0 none;
        }
    </style>

ASPX:

        <telerik:RadGrid ID="RadGrid1" runat="server">
            <MasterTableView>
                <Columns>
                    <telerik:GridTemplateColumn UniqueName="EditColumn" AllowFiltering="false">
                        <HeaderStyle Width="70px" />
                        <ItemTemplate>
                            <telerik:RadButton ID="rbEdit" runat="server" Text="Select" Skin="Simple"
                                AutoPostBack="false">
                            </telerik:RadButton>
                        </ItemTemplate>
                    </telerik:GridTemplateColumn>
                </Columns>
            </MasterTableView>
        </telerik:RadGrid>

where Simple is the name of the used Skin.











Won't Fix
Last Updated: 06 Aug 2015 13:58 by Andre Light
ADMIN
Created by: Angel Petrov
Comments: 1
Category: Grid
Type: Feature Request
1
There are TypeScript definitions for enabling intellisense
Completed
Last Updated: 21 Jun 2022 22:04 by ADMIN
The selector area of the dragging to select automatically goes all the way to the left; could that be changed so that the area shows up only from where the user clicked to where the cursor goes, like Windows Explorer? (see attached image)
Completed
Last Updated: 17 Jul 2015 10:25 by Roberto