Unplanned
Last Updated: 13 Jun 2024 13:59 by Jamison
In the Telerik WPF DataGrid there are ColumnWidthChanging and ColumnWidthChanged events. Expose similar events to the Telerik MAUI DataGrid control.
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: 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.
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.   

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 
Unplanned
Last Updated: 02 Jan 2024 08:47 by Jamison
Now when clicking outside of the rows and outside of the DataGrid control, the commit edit command is not executed. You have to click on the rows to execute the command.

Provide an option to execute the command when clicking outside of the rows, also outside of the DataGrid control. 

For now you can execute the CommitEdit command on external UI: 
    private void TapGestureRecognizer_Tapped(object sender, TappedEventArgs e)
    {
        this.dataGrid.CommandService.ExecuteCommand(DataGridCommandId.CommitEdit, new EditContext(null, ActionTrigger.Programmatic, null));
    }
Unplanned
Last Updated: 15 Nov 2023 10:16 by JoPi
There doesn't seem to be an attribute within DataGridColumnHeaderStyle that lets me set the height of the header.

The reason I am looking for this feature is because I want the header to change height to fit the font size
Unplanned
Last Updated: 19 Oct 2023 10:23 by Jamison
Provide support for nested properties in the property aggregate descriptor.
Unplanned
Last Updated: 16 Oct 2023 10:37 by Daniel
Created by: Daniel
Comments: 0
Category: DataGrid
Type: Feature Request
1
Provide customizable UI for adding and deleting rows in DataGrid.
Unplanned
Last Updated: 19 Sep 2023 14:04 by Ilker

Provide a style property for the text in grouping panel. Currently you can style the border, background color and change the header text of the panel. For example:

<Style TargetType="telerik:DataGridGroupingPanel">
    <Setter Property="BackgroundColor" Value="Red"/>
    <Setter Property="HeaderText" Value="Hello to group"/>
    <Setter Property="CornerRadius" Value="10"/>
    <Setter Property="BorderThickness" Value="2"/>
    <Setter Property="BorderColor" Value="Blue"/>
</Style>

1 2 3