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.
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.
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: 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: 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: 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. 
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.
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.
Unplanned
Last Updated: 02 Aug 2024 07:46 by ADMIN

1. Apply filtering to the DataGrid using the distinct values in the Filtering UI,

2. Clear the filter descriptors from external UI.

3. Open the same Filtering UI

Actual: the distinct values in the Filtering UI are still checked. 

Expected: The distinct values should be cleared.

Unplanned
Last Updated: 19 Jul 2024 14:10 by Dustin
If the DataGrid is placed inside a ScrollView, after upgrading to version 7.0 of the Telerik Maui tools the DataGrid is no longer visible on IOS. 
Unplanned
Last Updated: 27 Jun 2024 17:13 by Mayank
Currently the Options button (three dots) of the Search panel can be hidden by overriding the default SearchPanel ControlTemplate. We should provide an easier way to switch its visibility through the SearchSettings.
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)

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.

 
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.
1 2 3 4 5 6