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
Declined
Last Updated: 03 Nov 2014 11:45 by Elena
Bind RadGrid client-side to a WCF Data Service, using a separate GetCount method. Then filter on column typing the value 12345 in the filter textbox. The result is that the value is not passed correctly to the web service.