Unplanned
Last Updated: 23 Jun 2022 10:16 by ADMIN

When AJAX is enabled for the Grid with the <PagerStyle Mode="Advanced"> or <PagerStyle Mode="NextPrevNumericAndAdvanced"> the Go To Page by Number and Change Page Size Bugtons would not work.

On the other hand, if changing the Page or PageSize by typing and hitting the ENTER key instead of clicking the buttons, the Grid will behave accordingly.

Issue appears in RenderMode="Lightweight"

 

Completed
Last Updated: 03 Aug 2016 14:24 by David
Created by: Graeme
Comments: 2
Category: Grid
Type: Feature Request
1
Dear Team, Please add html print button as server method with radgird. So we can get the clean html page with perfect repeated headers and footer with page nos.
Completed
Last Updated: 29 May 2015 07:23 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.











Completed
Last Updated: 15 Jul 2015 22:41 by Chris
Unplanned
Last Updated: 08 Jan 2021 12:45 by ADMIN
Time independent filtering (EqualTo problem) is currently not supported with client-side binding in RadGrid, using a WCF with odata  binding.
When i use the filter in a date column, the filter does not return records, it is because is passing date AND TIME to the OData service. 
I have open a support ticket #932463, but Daniel says it is a new feature and not a bug.
So i request it.
Declined
Last Updated: 13 Aug 2015 14:30 by ADMIN
It would be nice if automatic insert/update functions could require unique data.  I would love to use these features, but always have to write the insert and update routines manually to check that duplicates are not used.
Unplanned
Last Updated: 20 Sep 2022 11:05 by eDAD
Created by: eDAD
Comments: 0
Category: Grid
Type: Feature Request
1

When EnableAriaSupport is enabled for the RadGrid, the PagerItem receives role='presentation' and hence is ignored by the screenreaders.

Unplanned
Last Updated: 27 Mar 2015 08:52 by ADMIN
Unplanned
Last Updated: 27 Jan 2023 08:24 by Mauro
Created by: Mauro
Comments: 0
Category: Grid
Type: Bug Report
1

Resizing a column in the Grid Leads to resizing of the Grid wrapper along with the GroupPanel. The problem can be replicated with the following Resizing settings:

<Resizing AllowColumnResize="true" AllowRowResize="true" EnableRealTimeResize="true" ResizeGridOnColumnResize="false" EnableNextColumnResize="true"/>

The issue occurs only on certain Screen sizes, or when the browser/display has some zoom applied.

Unplanned
Last Updated: 03 Feb 2023 09:24 by ADMIN

Hi,

I have a grid with detail tables.  When the user expands an entry in the parent table, the child table data gets populated via the DetailTableDataBind event.  That's all working properly when things go right.  I'm trying to implement something to address when the detail data retrieval fails.

I've tried setting Cancelled = true in the GridDetailTableBindEventArgs parameter, but that appears to do nothing.

What's even more strange is that if I don't set the value of DetailTableView.DataSource, or I set it to nothing, the value of DetailTableView.DataSource takes on the value of the parent item datasource.  That produces an exception because the parent table doesn't have the columns specified in the detail table DataKeyNames property.  If I clear the DataKeyNames, I can prevent the exception.  But then the child grid shows the parent grid records.

The following is a sample DetailTableDataBind Event:  What can I do to either prevent the parent item from opening, show an empty child item, etc?

 

Protected Sub rgGrid_DetailTableDataBind(sender As Object, e As GridDetailTableDataBindEventArgs) Handles rgErrorGrid.DetailTableDataBind
        Select Case e.DetailTableView.Name
            Case "DetailTableName"
                Dim dataItem As GridDataItem = TryCast(e.DetailTableView.ParentItem, GridDataItem)
                Dim KeyVal As Integer
                Dim dt As DataTable = Nothing
 
                If Integer.TryParse(dataItem.GetDataKeyValue("ID").ToString(), KeyVal) Then
                    dt = GetDetailTable(KeyVal)
                End If
 
                If dt Is Nothing Then
                    ' What do I need to do here to either prevent the parent item from expanding, or show an empty grid...without throwing an exception?
                    e.DetailTableView.DataSource = Nothing
                    e.Canceled = True
                Else
                    e.DetailTableView.DataSource = dt
                End If
        End Select
    End Sub


Declined
Last Updated: 13 Aug 2015 14:48 by SUNIL
It should be client's decision to style his grid, we can not change the dimentions, since it will bre breaking change for the rest of the customers
Under Review
Last Updated: 14 Aug 2023 12:37 by ADMIN
When a RadGrid has the "AllowScroll" property set to True and is populated via a DataSourceID, calling the ExportToExcel() method on the grid results in the grid immediately rebinding. This undoes any changes made to the grid, like during the recommended way to export Template columns. When AllowScroll=False, the grid does not rebind and Template columns are exported, as expected.
Completed
Last Updated: 10 Aug 2021 13:28 by ADMIN
Release R1 2016
Completed
Last Updated: 16 Jul 2015 07:58 by ADMIN
Unplanned
Last Updated: 18 Sep 2023 07:38 by ADMIN

The submenu with filtering options has elements that overflow the sliding element:

Declined
Last Updated: 18 Aug 2016 18:16 by wildyaker
Created by: Matthew
Comments: 4
Category: Grid
Type: Bug Report
1
Reference: http://www.telerik.com/forums/radgrid-column-header-and-data-item-alignment-problem

This has apparently been an issue with RadGrid for a long time, according to the above thread. I have done a significant amount of testing to isolate this bug and have attached a self-contained solution in VB.NET 4.0 (VS 2010).

I removed all the surplus RadGrid properties I could in order to simplify the debugging process on your end and included my notes in the code and on the test page. There is indeed some peculiar behavior with the control.

Regards,
Matthew