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 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 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: 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 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 06:59 by ADMIN
Release 7.0.0 (2024 Q2)
Can we get the ability to turn off the dynamic sorting of the DataGrid? Currently, if we sort on a column for a property that's updating often, every update ends up re-evaluating the sort, so we end up with rows jumping up and down, which can get very distracting when rows that are constantly moving around.
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)
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: 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: 13 Mar 2024 13:42 by ADMIN
Release 6.8.0
Created by: Clint
Comments: 1
Category: DataGrid
Type: Feature Request
0
Provide an option to indent the each group header according to its Level
Completed
Last Updated: 13 Mar 2024 08:49 by ADMIN
Release 6.8.0
Created by: Nicholas
Comments: 1
Category: DataGrid
Type: Feature Request
7
Make the DataGrid work with dynamic objects and visualize/edit them as expected
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: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0

Provide support for nested properties with null values. 

Currently when using the following scenario: null ref exception is throw, when manager is null:

private Person _manager;
public Person Manager
{
    get { return _manager; }
    set { UpdateValue(ref _manager, value); }
}

<telerik:DataGridTextColumn PropertyName="Manager.Name" 
                            HeaderText="Manager"/>

 

Provide support for null values when nested properties are used in datagrid columns.

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.
Completed
Last Updated: 31 Jan 2024 07:55 by ADMIN
Release 6.7.0
Created by: Anurag
Comments: 0
Category: DataGrid
Type: Feature Request
4
I do not want to filter on particular column. I want to search in entire grid.
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: 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.  
1 2 3