Unplanned
Last Updated: 10 Mar 2023 14:38 by Vojtěch

IsCaseSensitive property doesn't work in the DataGrid control.

Workaround: Use Programmatic Filtering 

Example: https://github.com/telerik/maui-samples/tree/main/Samples/SdkBrowser/Examples/DataGridControl/FilteringCategory 

Disable the built in filtering UI and apply a custom UI with programmatic filtering.

Completed
Last Updated: 19 Jul 2023 06:37 by ADMIN
Release 6.0.0
I have found that I am able to drag and drop columns across different datagrids, even when they are bound to completely different datasources. The function produces unexpected results- different columns end up getting get moved around on the grids.
Unplanned
Last Updated: 14 Mar 2023 15:03 by Vojtěch
Created by: Vojtěch
Comments: 0
Category: DataGrid
Type: Feature Request
2
I work on Maui Windows application and I use Telerik Maui Grid control. Current column filtering in this component is not bad but is not as user-friendly as Filter Row in Grid for Winforms. Can I create something like a Filter row in Grid for Winforms? Or have you a plan for adding it in the future to the Maui Grid component yourself?
Completed
Last Updated: 18 Aug 2023 09:44 by ADMIN
Release 6.1.0

Hi Team,

If the cell is frozen, the HitTestService.CellInfoFromPoint( ) method always returns null

Thank you,

Jia

Duplicated
Last Updated: 20 Jul 2023 08:16 by ADMIN
Created by: Christian
Comments: 1
Category: DataGrid
Type: Feature Request
2

Hey,

when binding to any collection of T with a nested property the DataGrid throws a NullReferenceExpection in Telerik.Maui.Controls.Compatibility.Common.Data.Fields.PropertyInfoFieldInfo.GetValue(object item) when the parent property is null, rendering nested propert< bindings kinda useless.

To mitigate this issue a Fallback-value option for each column (or at least catching the exception and returning null) would be nice.

Unplanned
Last Updated: 28 Mar 2024 12:04 by ADMIN
Created by: Hanoch
Comments: 2
Category: DataGrid
Type: Feature Request
2
Add a built-in feature to export the DataGrid columns to Excel.
Unplanned
Last Updated: 12 May 2023 05:22 by Slawomir
Created by: Slawomir
Comments: 0
Category: DataGrid
Type: Feature Request
2
Provide a pull to refresh gesture like in RadListView control.
Completed
Last Updated: 19 Jul 2023 10:22 by ADMIN
Release 6.0.0
Null reference exception when using the AddSingleton approach in the shell app. 
Unplanned
Last Updated: 20 Apr 2023 08:36 by Dav
Created by: Dav
Comments: 1
Category: DataGrid
Type: Feature Request
2

Provide a user commands as RadListView that you could directly bind in the ViewModel.

Solution: 

Enhance the DataGridCommand class as a user command and in this way bind it to the defined commands inside ViewModel/ContentPage. - Sample project attached

Unplanned
Last Updated: 13 Jun 2024 13:59 by Jamison
In the Telerik WPF DataGrid there are ColumnWidthChanging and ColumnWidthChanged events. Expose similar events to the Telerik MAUI DataGrid control.
Unplanned
Last Updated: 12 Jun 2024 13:21 by Allen
when setting all columns to be frozen, I cannot expand/collapse the row details
Unplanned
Last Updated: 22 May 2024 15:06 by Allen
Created by: Allen
Comments: 0
Category: DataGrid
Type: Feature Request
2

 I want to have the option to add a ToolTip for column, 

 <telerik:DataGridTextColumn IsFrozen="True" HeaderText="BirthDay"
                                            DataMemberBinding="{Binding BirthDay}"
                                            ToolTipProperties.Text="{Binding BirthDay}" />

Unplanned
Last Updated: 22 May 2024 15:02 by Allen

Scenario: I want to bind two properties to a column, So I created Text column and set DataMemberBinding property to binding these two properties,

<telerik:DataGridTextColumn HeaderText="Country">
                    <telerik:DataGridTextColumn.DataMemberBinding>
                        <MultiBinding Converter="{StaticResource MultiConverter}">
                            <Binding Path="Country" />
                            <Binding Path="City" />
                        </MultiBinding>
 </telerik:DataGridTextColumn.

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.
Declined
Last Updated: 11 Jun 2024 11:41 by ADMIN

I tested streaming data for nested property and the UI does not update. The data is updated in the collection bound to the DataGrid ItemsSource, still the UI doesn't. 

When I enter editing the cell, the UI updates.

 

The issue happens in this case:

 

                <telerik:DataGridNumericalColumn PropertyName="Address.Age"
                                            HeaderText="Age" />

                <telerik:DataGridTextColumn DataMemberBinding="{Binding Address.Age}"
                             HeaderText="Age DataMemberBinding"/>

 

Unplanned
Last Updated: 28 Mar 2024 11:56 by Hanoch
Created by: Hanoch
Comments: 0
Category: DataGrid
Type: Feature Request
2
I need to export my DataGrid to a PDF document in a similar way as in WPF: Telerik WPF GridView: Export to PDF
Unplanned
Last Updated: 10 May 2024 05:09 by ADMIN

Add FontAutoScalingEnabled property to the header, textcell, groupheader, where font size can be set.

 

for the Label there is such property https://learn.microsoft.com/en-us/dotnet/maui/user-interface/fonts?view=net-maui-8.0#disable-font-auto-scaling that allows you to disable the text scaling

In Development
Last Updated: 01 Jul 2024 07:26 by ADMIN
Scheduled for 2024 Q3
Provide a way to access the DataGrid from the DataGridColumn.
Unplanned
Last Updated: 11 Jun 2024 11:38 by ADMIN
Created by: Allen
Comments: 0
Category: DataGrid
Type: Bug Report
2

When setting MinimunHeightRequest to the DataGrid control, the height is not respected.

If you have minimum and maximum height request set, maximum will be applied instead.

In Development
Last Updated: 01 Jul 2024 07:25 by ADMIN
Scheduled for 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.