Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
Can we get the ability to turn off the dynamic sorting of the DataGrid? Currently, if we sort on a column for a property that's updating often, every update ends up re-evaluating the sort, so we end up with rows jumping up and down, which can get very distracting when rows that are constantly moving around.
Completed
Last Updated: 13 Mar 2024 13:42 by ADMIN
Release 6.8.0
Created by: Clint
Comments: 1
Category: DataGrid
Type: Feature Request
0
Provide an option to indent the each group header according to its Level
Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0
Provide an option to change the IsBusy animation type, color, etc. 

Currently I can change the IsBusy background color by using implicit style: 
<ContentPage.Resources>
        <ResourceDictionary>
            <Style TargetType="telerik:RadBusyIndicator" x:Name="busy">
                <Setter Property="BackgroundColor" Value="Red"/>
            </Style>
        </ResourceDictionary>
    </ContentPage.Resources>
    <telerik:RadDataGrid IsBusy="True"/>
Completed
Last Updated: 07 Jun 2023 07:41 by ADMIN
Release 5.2.0

Please provide the Full Data Grid Column Header Control Template for customization.  The DataGrid Column Header content template is useful but we would like full control of the Column Header Control Template.

 

Completed
Last Updated: 19 Jul 2023 06:37 by ADMIN
Release 6.0.0
Created by: Craig
Comments: 0
Category: DataGrid
Type: Feature Request
8
 Add Hover visual states for the Column Header. On Hover Visual States change the BackgroundColor of the header.
Completed
Last Updated: 15 Mar 2023 12:38 by ADMIN
Release 5.1.0
Provide support for binding a .net DataTable or DateView as ItemsSource to the RadDataGrid.
Completed
Last Updated: 07 Jun 2023 07:41 by ADMIN
Release 5.2.0
Created by: Erik Damgaard
Comments: 0
Category: DataGrid
Type: Feature Request
1

Add the ability to specify a template when the ItemsSource is null or collection is empty.

 

As a solution until this feature is implemented:

Hide the DataGrid and show any content over it in the case its ItemsSource is empty.

Completed
Last Updated: 13 Mar 2024 08:49 by ADMIN
Release 6.8.0
Created by: Nicholas
Comments: 1
Category: DataGrid
Type: Feature Request
7
Make the DataGrid work with dynamic objects and visualize/edit them as expected
Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0

Provide support for nested properties with null values. 

Currently when using the following scenario: null ref exception is throw, when manager is null:

private Person _manager;
public Person Manager
{
    get { return _manager; }
    set { UpdateValue(ref _manager, value); }
}

<telerik:DataGridTextColumn PropertyName="Manager.Name" 
                            HeaderText="Manager"/>

 

Provide support for null values when nested properties are used in datagrid columns.

Completed
Last Updated: 19 Jul 2023 06:40 by ADMIN
Release 6.0.0
Created by: Erik Damgaard
Comments: 0
Category: DataGrid
Type: Feature Request
8
Add hierarchical grid functionality or row details to show additional information on the item.
Completed
Last Updated: 18 Jan 2023 12:28 by ADMIN
Release 5.0.0
Created by: Nate
Comments: 1
Category: DataGrid
Type: Feature Request
1
Provide an option to apply frozen columns in the DataGrid when scrolling horizontally.
Completed
Last Updated: 18 Jan 2023 12:43 by ADMIN
Release 5.0.0
Created by: atlanta
Comments: 2
Category: DataGrid
Type: Feature Request
3
Expose an API to scroll to a particular Item, in this case an Item with a Selection.
Completed
Last Updated: 15 Sep 2022 13:23 by ADMIN
Release 3.0.0
Created by: Anurag
Comments: 1
Category: DataGrid
Type: Feature Request
0
Summation like (Total, Avg..) of Columns
Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0
Created by: Anurag
Comments: 0
Category: DataGrid
Type: Feature Request
4
I do not want to filter on particular column. I want to search in entire grid.
Completed
Last Updated: 21 Aug 2023 15:01 by ADMIN
Created by: Mattias
Comments: 2
Category: DataGrid
Type: Feature Request
4
For efficient data entry, users would expect to be able to use arrows/enter to navigate the grid and not just click to edit.