Completed
Last Updated: 15 May 2024 07:31 by ADMIN
Release 7.0.0 (2024 Q2)
Scenario: You have a DataGrid Width set to 500 and you start frozen the columns. When the frozen columns exceed the DataGrid width, blank area is visualized while scrolling horizontally to reach the latest column.
Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
There is a Debugger.Break in two spots in IndexStorage.cs (OffsetFromIndex and IndexFromOffset methods) which causes the application to constantly break into Telerik code and makes it difficult to debug the app. 
Completed
Last Updated: 15 May 2024 07:31 by ADMIN
Release 7.0.0 (2024 Q2)

The DataGrid will crash when there is a bunch of CollectionChanged events with Grouping enabled. This happens in 6.6.0, 6.7.x and 6.8.x versions of the Telerik DataGrid. 

 

Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
In Windows, when I press the up key or the down key while the data grid is on edit mode, the scroll bar moves even though it shouldn't.

In view mode, the scroll bar of the data grid moves only when the selected item is the first or last visible item in the display area of the data grid. But in edit mode, it moves regardless and it moves a lot more than usual.

I need a way for the scrollbar to behave the same for view and edit modes for a requirement in my project.
Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
When you have a DataGrid initially grouped with RowDetails enabled to present additional data, the app crashes when scrolling through the data on Windows.
Completed
Last Updated: 15 Apr 2024 13:40 by ADMIN
Release 7.0.0 (2024 Q2)
The DataGrid crashes, if there is a cell with NULL value and when resizing the column to minimum,
Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
Created by: Gabriel
Comments: 0
Category: DataGrid
Type: Bug Report
1
Reordering DataGridDrawingColumn by dragging their column headers around don't reorder the cells too. The cells keep the position before the reordering
Completed
Last Updated: 15 May 2024 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
If the DataGrid has two or three columns, and the device is rotated horizontally, the last column header is not fully rendered.
Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0
Created by: Arif
Comments: 0
Category: DataGrid
Type: Bug Report
1
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: 21 Dec 2023 13:19 by ADMIN
Release 6.6.0
There would be a blank space on the left side of DataGrid when the user keeps double clicking (editing) on different cells quickly.
Completed
Last Updated: 21 Dec 2023 13:19 by ADMIN
Release 6.6.0
Currently when a cell is edited, the underlying value is updated on every change, make it possible to update the underlying value when the edit is committed.
Completed
Last Updated: 31 Jan 2024 08:52 by ADMIN
Release 6.7.0
With Shell navigation the first time the page with the DataGrid is navigated to, the DataGrid is properly displayed, if you return to the previous page with the Back button and navigate again to the DataGrid page, the control is not visualized on Android.
Completed
Last Updated: 21 Dec 2023 13:19 by ADMIN
Release 6.6.0
I auto select the text in cell once the cell is in edit mode and SelectionOnFocus is set to SelectAll in the RadEntry element inside the CellEditTemplate. I have a timer that updates other columns value but not the value in the editable cell. Still the selection is lost when row data changes.  
Completed
Last Updated: 21 Dec 2023 13:19 by ADMIN
Release 6.6.0
Created by: Tinus
Comments: 0
Category: DataGrid
Type: Bug Report
1

Dynamic change of the IsEnabled property of the RadDataGrid does not affect the RowDetails, leaving the UI inconsistent.

In my case, the RadDataGrid is disabled initially (IsEnabled=False). Some data is loaded in the DataGrid. At runtime I set the IsEnabled property of the DataGrid to true. I am then able to expand row details. The issue is that the view in the row details has the IsEnabled property set to false.

Completed
Last Updated: 26 Oct 2023 07:18 by ADMIN
Release 6.4.0

having shell project with two pages added in flyout items:

MainPage is with DataGrid, page2 with TabView.

On .NET 8 RC1/RC2 Switching back from page2 to MainPage results in a StackOverflowException from RadDataGrid.

Completed
Last Updated: 15 Nov 2023 08:59 by ADMIN
Release 6.5.0
When DataGrid is inside Grid and Grid Background is set in Styles.xaml, the DataGrid is not visible. 

When Grid Background is set in the page where control is defined, no issues. 
Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0

Application Crashes if we delay the column creations after the collection is set.

 

No crash if we remove the delay.

Completed
Last Updated: 15 May 2024 07:31 by ADMIN
Release 7.0.0 (2024 Q2)
if the user rapidly resizes the app window for a short period of time, the footer gets stuck and won't readjust to sit at the bottom of the page until its resized again manually. 
Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0

When cell is in edit mode, pressings enter key calls infinitely CommitEdit Execute method in custom scenario. 

1. When new item is added to the DataGrid source, the cell goes in edit mode

2. Pressing enter key executes additional logic and CommitEdit Execute method calls infinitely.

Workaround:

 Inside the CommitEdit CanExecure method, call the default can execute logic

public override bool CanExecute(object parameter)
    {
        return this.Owner.CommandService.CanExecuteDefaultCommand(DataGridCommandId.CommitEdit, parameter);
        //return true;
    }

Completed
Last Updated: 18 Aug 2023 09:43 by ADMIN
Release 6.1.0

If a user changes an editable cell's value and then hit Tab, and the next cell to the right is not editable. Furthermore, the DataGrid enters into a state where no cells can be edited.

1 2 3