Completed
Last Updated: 10 Mar 2025 05:45 by ADMIN
Release 6.8.0
Created by: Arif
Comments: 2
Category: DataGrid
Type: Bug Report
2
There is a memory leak in DataGrid on Windows - when the DataGrid control is on the page, the page does not dispose when GC runs.
Completed
Last Updated: 12 Feb 2025 09:06 by ADMIN
Release 10.0.0 (2025 Q1)
when a RadDataGrid has collapsed groups, trying to edit a row that comes after one of the collapsed groups (and a little bit of scrolling) is impossible, because the RadDataGrid scrolls back to the top.
Completed
Last Updated: 12 Feb 2025 09:06 by ADMIN
Release 10.0.0 (2025 Q1)
If the DataGrid is placed inside a ScrollView, after upgrading to version 7.0 of the Telerik Maui tools the DataGrid is no longer visible on IOS. 
Completed
Last Updated: 12 Feb 2025 09:06 by ADMIN
Release 10.0.0 (2025 Q1)

when applying Grouping and RowHeight to the DataGrid and expand the row details, the following happens -> The DataGrid in the RowDetails only appears for alternate rows. 

In addition the RowHeight does not apply to the Grouping Row.

Workaround:

Remove the RowHeight from the DataGrid and set the CellContentStyle property to the columns and set the TextMargin to the DataGridTextCellStyle, and ButtonMargin to the DataGridToggleRowDetailsCellStyle. Here is an example when setting them to 0:

            <telerik:DataGridTextCellStyle x:Key="cellStyle"
                                           TextMargin="0"/>


            <telerik:DataGridToggleRowDetailsCellStyle x:Key="toggleStyle"
                                                       ButtonMargin="0"/>


            <telerik:RadDataGrid.Columns>
                <telerik:DataGridToggleRowDetailsColumn CellContentStyle="{StaticResource toggleStyle}"
                                                        IsFrozen="True"/>
                
                <telerik:DataGridTextColumn PropertyName="Country"
                                            CellContentStyle="{StaticResource cellStyle}"
                                            IsFrozen="True" 
                                            CanUserReorder="False"  />
                
                <telerik:DataGridTextColumn PropertyName="Capital" 
                                            CellContentStyle="{StaticResource cellStyle}" />
            </telerik:RadDataGrid.Columns>

Completed
Last Updated: 12 Feb 2025 09:06 by ADMIN
Release 10.0.0 (2025 Q1)
In a scenario with dynamic removing and adding of columns, there is a memory leak when clearing the columns by invoking the Clear() method of the columns collection.

A work-around is to remove the columns one by one:

    for (int i = this.dataGrid.Columns.Count - 1; i >= 0; i--)
    {
        this.dataGrid.Columns.RemoveAt(i);
    }
Completed
Last Updated: 19 Nov 2024 13:27 by ADMIN
Release 8.0.0 (2024 Q4)
DataGridBorderStyle and DataGridCellStyle classes do not support property binding.
Completed
Last Updated: 13 Nov 2024 16:22 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: Hanoch
Comments: 6
Category: DataGrid
Type: Feature Request
12
Provide the option to add paging functionality at the bottom of the DataGrid, so data will be loaded in portions.
Completed
Last Updated: 13 Nov 2024 15:23 by ADMIN
Release 8.0.0 (2024 Q4)
Frozen columns sometimes do not display their content when quickly navigate from and back to the page with the DataGrid on Windows.
Completed
Last Updated: 13 Nov 2024 15:23 by ADMIN
Release 8.0.0 (2024 Q4)
There is a memory leak in the DataGrid on iOS/MacCatalyst - when the DataGrid control is on the page, the page does not dispose when GC runs.
Completed
Last Updated: 07 Aug 2024 08:50 by ADMIN
Release 7.1.0 (2024 Q3)
Provide a way to access the DataGrid from the DataGridColumn.
Completed
Last Updated: 07 Aug 2024 08:44 by ADMIN
Release 7.1.0 (2024 Q3)
Created by: Matthew
Comments: 1
Category: DataGrid
Type: Feature Request
4
Expose Column Reordering events.
Completed
Last Updated: 07 Aug 2024 08:43 by ADMIN
Release 7.1.0 (2024 Q3)
In the Telerik WPF DataGrid there are ColumnWidthChanging and ColumnWidthChanged events. Expose similar events to the Telerik MAUI DataGrid control.
Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)

When we have ListenForNestedPropertyChange property set to true and at some point Clear of the ItemsSource is called the newly added items to the collection stop to listen for PropertyChanged.

In order to make ListenForNestedPropertyChange work again toggle the value of the property. First set it to false and after that back to true.

 
Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)
After updating to version 7.0.0, I noticed a crash at RadDataGrid. If the horizontal scroll bar is visible, and you scroll to the right and then update ItemsSource, the application crashes. As additional details, if in the cells is a Label, the problem does not reproduce, only if there is an Entry.
Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)

As of Telerik v7.0.0 this started to happen. In v6.8.0 the issue doesn't occur. The customer uploaded a sample project in the support ticket.

Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)
When you have a business logic that is shared between several rows in RadDataGrid and ListenForNestedPropertyChange is set to true when you try to assign that object to one more row ArgumentException is thrown.
Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)

I have the following issues when there is a DataGrid inside RowDetails template

1. The + does not change to - after expanding the details

2. Clicking the header in the inner data grid of line 2 does not work (seems disabled)

3. Sometimes cannot edit the inner DataGrid. tapping 2 times on the cell does not enter in edit mode

Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)

When uprating the row details data, the data does not update in the UI. You have to resize the window, or collapse then expand the row details to see the updated value. 

The behavior happens in 7.0.0 version. In 6.8.0 it works as expected. 

Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)
when setting all columns to be frozen, I cannot expand/collapse the row details
Completed
Last Updated: 07 Aug 2024 08:00 by ADMIN
Release 7.1.0 (2024 Q3)
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.
1 2 3 4