In Development
Last Updated: 22 Oct 2024 06:42 by ADMIN
Frozen columns sometimes do not display their content when quickly navigate from and back to the page with the DataGrid on Windows.
Unplanned
Last Updated: 15 Oct 2024 09:06 by Quoc
Unplanned
Last Updated: 08 Oct 2024 11:51 by Teddy
Having a DataGrid inside RowDetails. When sorting the control, the control does not resize as expected. 
working on WinUI. 
Unplanned
Last Updated: 04 Oct 2024 07:49 by Andrew
I have overridden the CreateGroupDescriptor() method to apply custom grouping on a column using the built-in grouping. However it seems I cannot get information whether grouping on this column is applied. I checked that IsGrouped and CanGroupBy properties are internal. 
Unplanned
Last Updated: 02 Oct 2024 12:41 by ADMIN

Issue description:

When the grid contains, after filtering out ,no rows the "Empty template" is not used/displayed.

Tested on Windows,  with "Telerik_UI_for_dot_NET_Maui_7_1_0_Dev\Examples\ControlsSamples", Example "Empty Template".

Steps to reproduce:

  1. Open example  "Empty Template"
  2. In "Configuration" set "Items source" to "Non-empty collection"
  3. Set filter in "Order Id" to "Is equal to" = 999

Expected behavior:

Display/Use "Empty template" when there are no visible records.

...or to make it more consistent with the current implementation - add new option "ItemsSourceNullOrEmptyOrFilteredOut" to the enum "EmptyContentDisplayMode":


namespace Telerik.Maui.Controls;
//
// Summary:
//     Defines the modes for displaying empty content.
public enum EmptyContentDisplayMode
{
    //
    // Summary:
    //     Displays the empty content view only when the ItemsSource is null.
    ItemsSourceNull,

    //
    // Summary:
    //     Displays the empty content view when ItemsSource is null or when the source is
    //     empty (has zero items).
    ItemsSourceNullOrEmpty,
    
+    //
+    // Summary:
+    //     Displays the empty content view when ItemsSource is null or when the source is
+    //     empty (has zero items) or when all items are filtered out. (either by filter or by search)
+    ItemsSourceNullOrEmptyOrFilteredOut
}    


Best regards,

Peter

Unplanned
Last Updated: 02 Oct 2024 07:30 by Peter
When the DataGrid contains no rows and the horizontal scrollbar is visible - scrolling to the right paints a white area over column headers.
Unplanned
Last Updated: 01 Oct 2024 15:11 by Andrew
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.
Unplanned
Last Updated: 25 Sep 2024 07:21 by Jayward
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.
Unplanned
Last Updated: 24 Sep 2024 07:44 by Teddy
In WPF GridView there is a SelectColumn that allows you to select a given row via a checkbox. Provide such option in the Telerik MAUI DataGrid.
Unplanned
Last Updated: 18 Sep 2024 09:20 by Colt
Currently when the typed DataGrid columns (all columns except TemplateColumn) do not have a PropertyName/DataMemberBinding applied, a misleading exception is thrown and it is difficult to find out what is causing it.
Unplanned
Last Updated: 17 Sep 2024 07:29 by Francisco M.
When adding filter descriptors to the DataGrid, the grid filters the data and the filter icon color changes, but when you open the Filtering UI on the concrete column, the distinct values are not checked. 
Unplanned
Last Updated: 12 Aug 2024 08:37 by matvey
Created by: matvey
Comments: 0
Category: DataGrid
Type: Feature Request
1
I need to have some Frozen columns in MAUI Data Grid on the left edge of the table and some on the right.
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

1 2 3 4 5 6