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

Unplanned
Last Updated: 07 Jun 2024 11:35 by ADMIN
Created by: JoPi
Comments: 1
Category: DataGrid
Type: Feature Request
0

Hi,

I wanted to request a feature for the .net maui datagrid.  I would like if it were possible to merge cells across rows when they have the same value.  For example, I use the datagrid to display events and it would be so much more readable if all the events that were on the same day (date) showed the date cell just once merged across a few rows rather than duplicating it multiple times.

Thanks

Unplanned
Last Updated: 28 May 2024 11:40 by Francisco M.
Created by: Francisco M.
Comments: 0
Category: DataGrid
Type: Bug Report
0
On android and WinUI the DataGrid is enabled works fine, but on iOS while disable, it stills let me select, scroll, sort, edit data, etc.
Unplanned
Last Updated: 22 May 2024 15:06 by Allen
Created by: Allen
Comments: 0
Category: DataGrid
Type: Feature Request
3

 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}" />

1 2 3 4