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

 

Unplanned
Last Updated: 09 Aug 2023 08:39 by Craig
Currently, the users can select a row/cell by tapping on it. In RadListView there is also a SelectionGesture property which specifies on what gesture - tap or tap & hold the selection is triggered. It could be useful to add long press/hold gesture on DataGrid row/cell
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;
    }

Unplanned
Last Updated: 23 Aug 2023 14:20 by Jamison

 Behavior on MacCatalyst:

1. Enter in Edit mode in any cell
2. Press Enter
3.Value is committed, but not moved to the next row

Additional note: The KeyDownCommand execute method does not fire on MacCatalyst when cell is in edit mode and Enter is pressed.

This is how it works on Windows

1. Enter in Edit mode in any cell
2. Press Enter
3. Values is committed and the current cell is moved to the next row cell in edit

Completed
Last Updated: 18 Jan 2023 12:55 by ADMIN
Release 5.0.0

Run SDKBrowserMaui example on WinUI
Navigate to DataGrid->LoadOnDemandCategory->LoadOnDemandExmaple

Start scrolling the grid using the scrollbar

Crash occurs on WinUI.

Unplanned
Last Updated: 29 Jul 2022 14:36 by Deasun
Created by: Deasun
Comments: 0
Category: DataGrid
Type: Feature Request
1

Add text wrap formatting as the normal windows DataGrid control.

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
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: 03 Jul 2023 19:11 by Clint
Created by: Clint
Comments: 0
Category: DataGrid
Type: Feature Request
1

Hi Team,

I would like to see this feature implemented for the UI for Maui DataGrid => WPF DataGrid - Save/Load Settings - Telerik UI for WPF

I want my users to be able to save their current grouping/filtering/etc. settings just like the PersistenceFramework can do it for the WPF GridView.

Thank you,

Clint

Unplanned
Last Updated: 30 Apr 2024 15:07 by Francisco M.
Created by: Francisco M.
Comments: 0
Category: DataGrid
Type: Feature Request
1
When the DataGrid has grouping, we can get the groups from GetDataView(), but we can't get the aggregated values for these groups. There is no public API such as GetAggregateValues.
Unplanned
Last Updated: 14 Jun 2024 07:46 by Gabriel
We override the CreateSortDescriptor with a PropertySortDescriptor as some of our columns are sorted on a different property than is displayed. And in this case the sort indicator remains visible when tapping on another column to sort the data.
Won't Fix
Last Updated: 16 Jun 2023 10:32 by ADMIN
The column binding context is not cleared when setting the Binding Context to null on the DataGrid control.
Completed
Last Updated: 11 Oct 2023 08:02 by ADMIN
Release 6.3.0
Provide an option to change the IsBusy animation type, color, etc. 

Currently I can change the IsBusy background color by using implicit style: 
<ContentPage.Resources>
        <ResourceDictionary>
            <Style TargetType="telerik:RadBusyIndicator" x:Name="busy">
                <Setter Property="BackgroundColor" Value="Red"/>
            </Style>
        </ResourceDictionary>
    </ContentPage.Resources>
    <telerik:RadDataGrid IsBusy="True"/>
Completed
Last Updated: 15 Mar 2023 11:38 by ADMIN
Release 5.1.0
The following code uses RadHighlightedLabel and manipulates the highlighted text by the Text of an Entry.

<telerik:RadDataGrid x:Name="dataGrid" AutomationId="dataGrid" AutoGenerateColumns="False">
                <telerik:RadDataGrid.Columns>
                    <telerik:DataGridTextColumn PropertyName="Country" HeaderText="HighlightedLabel">
                        <telerik:DataGridTextColumn.CellContentTemplate>
                            <DataTemplate>
                                <telerik:RadHighlightLabel UnformattedText="{Binding Country}"
                                                                           HighlightText="{Binding Source={x:Reference searchEntry}, Path=Text}"
                                                                           HighlightTextColor="Red"/>
                            </DataTemplate>
                        </telerik:DataGridTextColumn.CellContentTemplate>
                    </telerik:DataGridTextColumn>
                </telerik:RadDataGrid.Columns>
            </telerik:RadDataGrid>

Expected: When typing in the entry the text of the label should get highlighted and remove the highlight when the text of the entry is removed.

Actual: The highlighted text doesn't get updated and stays the same.

 

 

Unplanned
Last Updated: 21 Oct 2022 18:41 by Tony
Created by: Tony
Comments: 0
Category: DataGrid
Type: Feature Request
1

Hi Team,

I would like to be able to obtain a reference to a data item in the DataGrid when another UI element (outside of the DataGrid) is dragged and dropped onto it.

This feature request is to add the plumbing necessary to achieve that.

Thank you,

Tony

Completed
Last Updated: 18 Jan 2023 12:28 by ADMIN
Release 5.0.0
Created by: Nate
Comments: 1
Category: DataGrid
Type: Feature Request
1
Provide an option to apply frozen columns in the DataGrid when scrolling horizontally.