Unplanned
Last Updated: 03 Apr 2024 12:32 by Volodymyr

We’ve encountered an issue related to the inner DataGrid within an outer DataGrid’s RowDetailsTemplate:

Steps to reproduce:

1. Create a DataGrid with editable cells and row details.
2. Inside the RowDetailsTemplate, place a layout (e.g., Grid).
3. Within this layout, embed another DataGrid with editable cells.
4. Start the application and expand row details on the Android platform.
5. Double-tap on any inner DataGrid's cell to open the cell editor. 

At this moment the UI appears unresponsive.

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: 29 Mar 2024 13:52 by Huynh
If the CellContentTemplate property of a column is used, and inside there is just one label, then the text of the label gets wrapped into two lines instead of being rendered in one line.
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: 26 Mar 2024 14:42 by Blake
When you edit a DataGrid cell and while in edit mode click outside the DataGrid, the edit is not committed and the cell stays focused.
Unplanned
Last Updated: 26 Mar 2024 06:20 by Chris
I have a DataGrid with another DataGrid in the Row Details. This works until a cell in the inner grid is selected and enters edit mode and then the outer grid is scrolled enough for the cells to be recycled and then it crashes.
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: 31 Jan 2024 02:50 by Fred

When navigating to DataGrid examples, xaml binding errors occur for ActualWidth and Header Text. 

Still, the app runs as expected. 

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: 30 Oct 2023 13:23 by Tomáš
When having a DataGrid in a ControlTemplate of a ContentView, data is not visualized. 

When setting the content initially, the Grid displays the data
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: 09 Oct 2023 13:04 by ADMIN
Created by: Legrand
Comments: 1
Category: DataGrid
Type: Bug Report
0
When typing to localize the text in the grouping panel, the localized string does not apply.
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>

Unplanned
Last Updated: 11 Sep 2023 13:43 by Ilker
DataGridBorderStyle and DataGridCellStyle classes do not support property binding.