Unplanned
Last Updated: 22 May 2024 15:06 by Allen
Created by: Allen
Comments: 0
Category: DataGrid
Type: Feature Request
2

 I want to have the option to add a ToolTip for column, 

 <telerik:DataGridTextColumn IsFrozen="True" HeaderText="BirthDay"
                                            DataMemberBinding="{Binding BirthDay}"
                                            ToolTipProperties.Text="{Binding BirthDay}" />

Unplanned
Last Updated: 22 May 2024 15:02 by Allen

Scenario: I want to bind two properties to a column, So I created Text column and set DataMemberBinding property to binding these two properties,

<telerik:DataGridTextColumn HeaderText="Country">
                    <telerik:DataGridTextColumn.DataMemberBinding>
                        <MultiBinding Converter="{StaticResource MultiConverter}">
                            <Binding Path="Country" />
                            <Binding Path="City" />
                        </MultiBinding>
 </telerik:DataGridTextColumn.

Unplanned
Last Updated: 15 May 2024 10:52 by Teddy
Provide a way to access the DataGrid from the DataGridColumn.
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.
Unplanned
Last Updated: 10 May 2024 05:09 by ADMIN

Add FontAutoScalingEnabled property to the header, textcell, groupheader, where font size can be set.

 

for the Label there is such property https://learn.microsoft.com/en-us/dotnet/maui/user-interface/fonts?view=net-maui-8.0#disable-font-auto-scaling that allows you to disable the text scaling

Unplanned
Last Updated: 30 Apr 2024 15:07 by Francisco M.
Created by: Francisco M.
Comments: 0
Category: DataGrid
Type: Feature Request
1
When the DataGrid has grouping, we can get the groups from GetDataView(), but we can't get the aggregated values for these groups. There is no public API such as GetAggregateValues.
Unplanned
Last Updated: 18 Apr 2024 08:22 by ADMIN
Created by: Sanket
Comments: 1
Category: DataGrid
Type: Feature Request
5
Provide a RowStyleSelector property to the DataGrid control.
Unplanned
Last Updated: 09 Apr 2024 08:16 by Teddy
Currently if the DataGrid columns have Fixed or Auto size and their overall width is less than the DataGrid width, the rows are not extended to the DataGrid width - provide a way for the rows to take the whole space.
Unplanned
Last Updated: 05 Apr 2024 07:23 by Paul
Created by: Paul
Comments: 0
Category: DataGrid
Type: Feature Request
1
I would like to use a mouse to drag a row to a new spot in row order.

Found this info for WinForms, but not finding anything for MAUI RadDataGrid

https://docs.telerik.com/devtools/winforms/knowledge-base/gridview-drag-drop-bound-mode 

https://docs.telerik.com/devtools/winforms/controls/gridview/end-user-capabilities/reordering-rows 
Unplanned
Last Updated: 01 Apr 2024 13:50 by Teddy
Created by: Teddy
Comments: 0
Category: DataGrid
Type: Feature Request
5
Provide an API that can be used to force RadDataGrid to re-draw. The WPF RadGridView have a method called Rebind(), but I don't see a similar method in the MAUI RadDataGrid.
Unplanned
Last Updated: 28 Mar 2024 12:04 by ADMIN
Created by: Hanoch
Comments: 2
Category: DataGrid
Type: Feature Request
2
Add a built-in feature to export the DataGrid columns to Excel.
Unplanned
Last Updated: 28 Mar 2024 11:56 by Hanoch
Created by: Hanoch
Comments: 0
Category: DataGrid
Type: Feature Request
2
I need to export my DataGrid to a PDF document in a similar way as in WPF: Telerik WPF GridView: Export to PDF
Unplanned
Last Updated: 25 Mar 2024 08:23 by Hanoch
Created by: Hanoch
Comments: 0
Category: DataGrid
Type: Feature Request
1
 I need to change the size of the DataGrid scrollbars to be wider and customize their color.
Unplanned
Last Updated: 19 Mar 2024 13:33 by JoPi
I would like to programmatically give a concrete cell the focus, such that the user can then navigate from the keyboard without having to manually select the cell with the mouse.
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: 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.

Unplanned
Last Updated: 05 Mar 2024 20:51 by Hanoch

The DataGrid Search As You Type feature provides search text highlighting through the CellContentStyle property of the columns.  

CellContentStyle is taken into account only for the default columns, so when you specify a custom CellContentTemplate or use a TemplateColumn currently the search text highlighting is not applied.   

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.
Unplanned
Last Updated: 18 Jan 2024 11:43 by Ramin
Created by: Ramin
Comments: 0
Category: DataGrid
Type: Feature Request
0
Provide an option to make several bottom rows frozen. For example when the user sorts a column it will not affect those rows. The rows must be pinned. Similar to this feature: https://docs.telerik.com/devtools/wpf/controls/radgridview/features/pinned-rows 
1 2 3 4