Unplanned
Last Updated: 17 Apr 2024 15:02 by Gabriel
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.
In Development
Last Updated: 15 Apr 2024 13:40 by ADMIN
Scheduled for 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,
In Development
Last Updated: 15 Apr 2024 13:40 by ADMIN
Scheduled for 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.
In Development
Last Updated: 15 Apr 2024 13:40 by ADMIN
Scheduled for 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
Unplanned
Last Updated: 15 Apr 2024 12:19 by ADMIN
an InvalidOperationException on a PropertyChanged event after you let the app run for some time and updates in the collection with removing data every 100ms and adding new data every 3 sec
In Development
Last Updated: 15 Apr 2024 10:13 by ADMIN
Scheduled for 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.
In Development
Last Updated: 12 Apr 2024 08:03 by ADMIN
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. 
Unplanned
Last Updated: 11 Apr 2024 12:25 by Teddy
the gridline shouldn't be disappearing from the last row when the row details are expanded
Unplanned
Last Updated: 11 Apr 2024 10:27 by Rich

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. 

 

Unplanned
Last Updated: 09 Apr 2024 11:13 by Teddy
When the DataGrid is bound to an ObservableCollection and its Clear() method is called in order to reset the source and add new items, the scroll position is not reset to the top.
Unplanned
Last Updated: 09 Apr 2024 09:35 by Huynh

It seems that the default fonts in the RadDataGrid do not support some languages, for example this text "이름" cannot be displayed in Android and WinUI. Rectangles are rendered instead of the correct symbols.

Note that a maui Label can properly display the text.

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: 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: 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.
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: 08 Mar 2024 07:12 by ADMIN
Release 5.2.0

Header Text, group header text, do not display some languages characters like Chinese, Thai, etc.

The root reason for this is the fact that the Skia APIs used to draw the text does not support automatic character fallback.

Workaround:

for header text:

<telerik:DataGridTextColumn.HeaderContentTemplate>
    <DataTemplate>
        <Label Text="your text"></Label>
    </DataTemplate>
</telerik:DataGridTextColumn.HeaderContentTemplate>

group header text

<telerik:RadDataGrid.GroupHeaderTemplate>
        <DataTemplate>
            <Label Text="{Binding Group.Key}"/>
        </DataTemplate>
</telerik:RadDataGrid.GroupHeaderTemplate>

column:

<telerik:DataGridTextColumn HeaderText="Name" >
    <telerik:DataGridTextColumn.CellContentTemplate>
        <DataTemplate>
            <Label Text="{Binding Name}"/>
        </DataTemplate>
    </telerik:DataGridTextColumn.CellContentTemplate>
</telerik:DataGridTextColumn>

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.
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. 

1 2 3 4