Completed
Last Updated: 13 Aug 2021 08:55 by ADMIN
Release R1 2021

When page scrolling is enabled and scrolling down the page, the row context menu of RadGrid rows do not open at a correct position.

Demo: Video Recording

Testing conducted in Safari 13, MacOS

Completed
Last Updated: 12 Aug 2021 17:34 by ADMIN
Release R3 2021
Reproduction:
<script runat="server">
    protected void RadGrid1_NeedDataSource(object sender, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
    {
        (sender as RadGrid).DataSource = Enumerable.Range(1, 10).Select(x => new { Id = x, Name = "Name " + x });
    }
</script>

<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecorationZoneID="test" DecoratedControls="All" />
<div id="test">
    <telerik:RadGrid ID="RadGrid1" runat="server" OnNeedDataSource="RadGrid1_NeedDataSource" AutoGenerateColumns="true"
        EnableHeaderContextMenu="true" FilterType="HeaderContext">
    </telerik:RadGrid>
</div>
Completed
Last Updated: 12 Aug 2021 11:32 by ADMIN
When Scrolling is enabled with Frozen columns in RadGrid, horizontal scrollbar not visible in Microsoft Edge.

Issue appears in Microsoft Edge Version:
- Microsoft Edge 42.17134.1.0
- Microsoft EdgeHTML 17.17134



WORKAROUND:

Apparently, setting the horizontal scrollbar's height to 17 pixels will make Microsoft Edge display it. (Note: in case it still not displaying, you may try with 18px)

To set the height, you can choose one of the options below:

1. Using CSS style to increase the size of the horizontal scrollbar by one pixel.

<style type="text/css">
    .RadGrid div[id$="_Frozen"] {
        height: 18px;

        /* or  */
        /*padding-bottom: 1px;*/
    }
</style>


2. Using JavaScript

Subscribe the grid to its GridCreated client-side event, and in the event handler increase the element's height with the scrollbar then revert it back to its original size with a delay:

<script type="text/javascript">
    function GridCreated(sender, args) {
        $('div[id$="_Frozen"]').height(17);
    }
</script>
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: 10 Aug 2021 13:58 by ADMIN
Completed
Last Updated: 10 Aug 2021 13:28 by ADMIN
Release R1 2016
Duplicated
Last Updated: 10 Aug 2021 09:59 by ADMIN
Because the TBODY THEAD and TFOOT elements are rendered in an incorrect order which is "header -> footer -> body" rather than "header -> body -> footer", the screen readers fail to present the data properly.
Unplanned
Last Updated: 26 Jul 2021 06:43 by Kasim

The SearchRow in RadGridView WinForms is extremely good.

https://docs.telerik.com/devtools/winforms/controls/gridview/rows/search-row 

How can we implement the same in ASP.Net Ajax RadGrid?

Unplanned
Last Updated: 12 Jul 2021 14:12 by bryan

In radgrid, when you are filtering the grid using EXCEL like filtering, you get a Listbox where you can enter a filter string, which then shows a filterlist of checkboxes that match that filter string.  There is a checkall checkbox at the very top.  If you select that, it selects all the filtered list checkboxes and checks them.

When you then click the filter button to apply the selection, the filter criteria is ignored, and no grid filtering occurs.

I did find a "fix" for this, but it is not useable.  

https://www.telerik.com/support/code-library/make-check-all-to-include-only-displayed-list-options-in-excel-like-filtering

The problem with this fix is that it works on the first applied filter, but if you the try to filter again, the Listbox takes a extremely long time to load the checkbox list, and so is not practical.

Is there a better solution?  Has this even been identified as a bug which will be fixed?   

Completed
Last Updated: 17 Jun 2021 10:17 by ADMIN
Release R2 2021 SP1

When the Grid is set to have FilterType="HeaderContext" and filtering by a keyword that starts with a question mark "?MyKeyword", an exception will be thrown: System.ArgumentOutOfRangeException: Index was out of range.

The issue can be replicated in our online demo Excel-like Filtering.

Note that the demos will not display the exact exception because it is handled by the CustomError mechanism of the demo site.

Unplanned
Last Updated: 15 Jun 2021 14:55 by ADMIN
As a user I would like to see on each grid the aggregate function totals for the actively displayed grid and on the last page the aggregate function totals for the active displayed grid and the data set aggregate function totals so that each page displays only its page level total and on the last page displays the full total of all data displayed.

See attached examples:
Example: Page level Total on every page and on the last page Page level Total plus Grid whole Total on the last page.
Duplicated
Last Updated: 15 Jun 2021 14:24 by ADMIN
Created by: José Ángel
Comments: 0
Category: Grid
Type: Feature Request
2
I think It would be great  the AUTOCOMPLETEBOX (integrated with FilterExpression)  insted of the TEXTBOX for filtering in riadgrid. 

It's too tedious adding a custom filter template , persisting and restoring filter values after postbacks, build the filterexpression manually etc.

I'm aware the checkList can provide similar functionality but it't not so clear,  intuitive, ergonomic and easy to use for current user.

Regards,
Ángel.
Unplanned
Last Updated: 15 Jun 2021 12:20 by ADMIN
Created by: David
Comments: 0
Category: Grid
Type: Feature Request
3
I grouped my grid on two levels.
Second level still contains many records.
It would be nice to allow paging on second level
Unplanned
Last Updated: 14 Jun 2021 13:10 by ADMIN
Created by: Daniel
Comments: 0
Category: Grid
Type: Feature Request
2
Hello,

RadGrid that has a master and detail tables and is rebinded to another data-source. Please automatically change all information and details of the RadGrid, including details-view. Currently,  only the master table is rebinded, not the details.

Please see an example of the problem in the my forum question:
 http://www.telerik.com/forums/radgrid-detailtable-doesn-t-rebind!

Thanks,
Daniel.
.NET Programmer at
ISR Corp
Unplanned
Last Updated: 14 Jun 2021 10:54 by ADMIN
ADMIN
Created by: Eyup
Comments: 0
Category: Grid
Type: Feature Request
3
Basically, improve the approach suggested in the following article to provide a more generic solution, applicable for multiple aggregate fields:
http://www.telerik.com/help/aspnet-ajax/grid-aligning-items-in-group-header.html
Unplanned
Last Updated: 13 Jun 2021 11:18 by ADMIN

In some cases, inside the Grid table, the tfoot element is rendered before the tbody element. This causes some readers to read the footer before the body. A possible workaround is moving the tfoot after the tbody in the OnGridCreated event:

<script>
function OnGridCreated(sender, args) {
    var $ = $telerik.$;
    $('tfoot').each(function (index, item) {
        var $item = $(item);
        var $next = $item.next();
        if ($next[0]) {
            if ($next[0].tagName.toLowerCase() == "tbody") {
                 $item.insertAfter($next);
            }
        }
    });
}
</script>

 

A forum discussion on the topic: