Unplanned
Last Updated: 22 Nov 2024 14:05 by Rich
We need an API through which we can get the currently visible in the viewport items. The API should take into account operations like sorting, filtering and grouping.
Completed
Last Updated: 19 Nov 2024 13:27 by ADMIN
Release 8.0.0 (2024 Q4)
DataGridBorderStyle and DataGridCellStyle classes do not support property binding.
Completed
Last Updated: 13 Nov 2024 16:22 by ADMIN
Release 8.0.0 (2024 Q4)
Created by: Hanoch
Comments: 6
Category: DataGrid
Type: Feature Request
12
Provide the option to add paging functionality at the bottom of the DataGrid, so data will be loaded in portions.
Completed
Last Updated: 13 Nov 2024 15:23 by ADMIN
Release 8.0.0 (2024 Q4)
Frozen columns sometimes do not display their content when quickly navigate from and back to the page with the DataGrid on Windows.
Completed
Last Updated: 13 Nov 2024 15:23 by ADMIN
Release 8.0.0 (2024 Q4)
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: 04 Nov 2024 14:26 by Teddy
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: 30 Oct 2024 11:43 by Parag

when applying Grouping and RowHeight to the DataGrid and expand the row details, the following happens -> The DataGrid in the RowDetails only appears for alternate rows. 

In addition the RowHeight does not apply to the Grouping Row.

Workaround:

Remove the RowHeight from the DataGrid and set the CellContentStyle property to the columns and set the TextMargin to the DataGridTextCellStyle, and ButtonMargin to the DataGridToggleRowDetailsCellStyle. Here is an example when setting them to 0:

            <telerik:DataGridTextCellStyle x:Key="cellStyle"
                                           TextMargin="0"/>


            <telerik:DataGridToggleRowDetailsCellStyle x:Key="toggleStyle"
                                                       ButtonMargin="0"/>


            <telerik:RadDataGrid.Columns>
                <telerik:DataGridToggleRowDetailsColumn CellContentStyle="{StaticResource toggleStyle}"
                                                        IsFrozen="True"/>
                
                <telerik:DataGridTextColumn PropertyName="Country"
                                            CellContentStyle="{StaticResource cellStyle}"
                                            IsFrozen="True" 
                                            CanUserReorder="False"  />
                
                <telerik:DataGridTextColumn PropertyName="Capital" 
                                            CellContentStyle="{StaticResource cellStyle}" />
            </telerik:RadDataGrid.Columns>

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

 
1 2 3 4 5 6