Unplanned
Last Updated: 27 Jan 2023 08:58 by ADMIN
Created by: Imported User
Comments: 4
Category: Grid
Type: Feature Request
4
Please add support for tags in exported PDF documents. We need these tags for accessibility purposes. Currently, when we export a PDF from a RadGrid, it is created without any tag structure, which can make it difficult for a screen reader to process correctly.
Completed
Last Updated: 22 Nov 2022 12:12 by ADMIN
You can workaround this issue with the following CSS rule.

<style>
    div.RadGrid .t-font-icon{
        font: 16px/1 "TelerikWebUI";
    }
</style>
Declined
Last Updated: 20 Sep 2016 05:36 by Jon
Rather than simply using the drag and drop method to reorder rows within a rad grid, allow for the built in functionality where you can simply move rows up and down client side so that the user can sort the data by rows rather than columns.

Feature request came after a customer had a grid of data that was sorted in a sorted order but they wanted the ability to not only select what rows they wanted which we coded using the checkbox column, but they then wanted to be able to sort the rows they had selected as the selected rows were being exported to a PDF or Excel so wanted them in a certain order.
Completed
Last Updated: 30 Sep 2016 10:54 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 0
Category: Grid
Type: Bug Report
0

			
Declined
Last Updated: 09 Jun 2021 16:09 by ADMIN
Created by: Stephan
Comments: 3
Category: Grid
Type: Bug Report
0
With the use of the "UseStaticHeaders"-Parameter all ARIA-Tags are gone in the rendered RadGrid.
We need the support of WAI-ARIA in our application for our customer.
Dont using this Parameter is no option for us.
You are not telling this missing function in your documentation.
Completed
Last Updated: 20 Sep 2016 06:53 by ADMIN
Completed
Last Updated: 24 Jun 2022 13:24 by ADMIN
Created by: Wandi
Comments: 5
Category: Grid
Type: Feature Request
1
There are more than 30 items (including task title) in RadGrid Task
I can't see Edit Template because my display resolution is not enough to show all Tasks.
I always get this problem with small resolution monitor.
Can you make it collapsible?
How do I go to EditTemplate? The task is not in the screen
Unplanned
Last Updated: 10 Jun 2016 11:57 by Gidon
Created by: Gidon
Comments: 0
Category: Grid
Type: Feature Request
2
Please add the ability to have a GridHyperLinkColumn automatically UrlEncode the fields specified in DataNavigateUrlFields. Having to handle it in the code-behind is a pointless pain in the butt, especially when dealing with more than 1 field. It should be handled automatically during the application of the DataNavigateUrlFormatString format instead.
Completed
Last Updated: 22 Jun 2016 10:10 by ADMIN
Steps to replicate the error:
Add a row and press the save button twice (before the first saving finishes, press the button again).
This will throw a "System.NullReferenceException" at "Telerik.Web.UI.GridTableView.FillDataKeys".
Unplanned
Last Updated: 09 May 2016 14:06 by ADMIN
Unplanned
Last Updated: 12 May 2016 22:16 by SUNIL
RadGrid filtering issue when RenderMode is set to Mobile and the grid is bind on the client

See the movie below:
https://drive.google.com/file/d/0Bzhl0S7bXwuyYlZ1akFwdHZvWDg/view


This can be replicated in the online demo below when edit mode is set to Mobile:
http://demos.telerik.com/aspnet-ajax/grid/examples/data-binding/client-side/declarative/defaultcs.aspx
Declined
Last Updated: 20 Sep 2016 05:37 by Coen
I'd like to request for an expansion of the RadGrid header rotation. Currently the rgRotateHeader style that can be applied rotates +90deg. 

I find this an uncomfartable reading direction and I am sure my users will complain about it. While attempting to set some custom style corrections tot rotate -90deg with the help of Telerik support I found that the end result was not good enough to bring into production: wrapping direction was wrong and too many manual corrections had to be made to make the header fit.

See attached screenshots where I made an attempt to rotate the header to override the rgRotateHeader style and the undesired wrapping results and the inconvenient required corrections in transform-origin. Maybe I could have made this work, but this is where I stopped my effort as it cost me too many time. 

I would very much like this a standard feature of the Radgrid. Also -45deg would be very nice to have!
Unplanned
Last Updated: 28 Apr 2016 10:30 by ADMIN
In RadGrid with client-side binding a js error appear after trying to change the page size if a button column has been reordered prior that.
Unplanned
Last Updated: 27 Mar 2018 18:56 by Doug
Created by: it-support
Comments: 1
Category: Grid
Type: Bug Report
0
"onrowdropping" event fires after clicking an already selected grid item (no drag and drop involved).

You can see this behavior in your demo:
http://demos.telerik.com/aspnet-ajax/grid/examples/columns-rows/rows/drag-and-drop/defaultcs.aspx
Declined
Last Updated: 27 May 2021 15:26 by ADMIN
Created by: Douw
Comments: 1
Category: Grid
Type: Feature Request
2
Hello,
Please add support to bind to System.Dynamic.DynamicObject: 
https://msdn.microsoft.com/en-us/library/system.dynamic.dynamicobject%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
Regards,
Douw
Completed
Last Updated: 10 May 2017 09:58 by Ray
Misalignment issue in RadGrid with static headers and simple control's configuration appears in IE.
Completed
Last Updated: 14 Mar 2016 12:11 by ADMIN
How to reproduce: Setup a RadGrid and configure the render mode to be Lightweight. Add group by expression with one select and one group field. Export to XLSX.

Current behavior: Html code is rendered in the Excel cell

Correct behavior: No Html code should be visible
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> 
Completed
Last Updated: 29 Sep 2016 12:32 by ADMIN