Unplanned
Last Updated: 28 Mar 2025 08:12 by Hanoch

When using ImageButton inside a CellTemplate, the image does not display initially. When you resize the window image is displayed. 

 

Workaround:

Use Image instead of ImageButton

 

Unplanned
Last Updated: 24 Mar 2025 15:20 by Teddy
When DataGrid is grouped and applying filtering, aggregates footer appears in the cells
Unplanned
Last Updated: 21 Mar 2025 15:17 by Teddy
expand a row and collapse it. Or expand a few rows, scroll around a bit, and then collapse one. You can get into some weird situations. Gray background over the group, row background and alternate styles are reset. 
Unplanned
Last Updated: 21 Mar 2025 14:37 by Teddy

Some data is missing from the UI when grouping is applied and then filter the data. 

If you ungroup, the items are displayed.

Unplanned
Last Updated: 21 Mar 2025 13:52 by Teddy

Starting with v10, all groups except the last, get a blank, empty row.

If you toggle off the grouping, the empty rows go away, but once you put the grouping on, these empty rows show up again.

Unplanned
Last Updated: 21 Mar 2025 11:23 by Teddy

Keep the data grouped, make the window a bit smaller so you have a decent amount of rows to scroll through, and using your mouse wheel, scroll up and down quickly. Eventually you'll notice that the grid will start to bounce a bit. For example, you'll scroll down and then without scrolling the mouse wheel up at all, it'll jump back up a few rows on its own.

Declined
Last Updated: 21 Mar 2025 14:05 by ADMIN
When entering a cell in edit mode its value is displayed on the next cell and the cell editor template uses MaskedEntry.
Unplanned
Last Updated: 13 Mar 2025 12:08 by ADMIN

Begin editing the first cell firs column
Without closing the cell editor, scroll down to the last cell, the first cell should exit the viewport.
Start editing the last cell.
Scroll back up to the first cell

The content inside the first cell is missing.

The content should be there.

Unplanned
Last Updated: 11 Mar 2025 11:29 by Rich
Provide an event that occurs when the content in the DataGrid is drawn. 
Unplanned
Last Updated: 10 Mar 2025 10:44 by ADMIN
Created by: Hanoch
Comments: 3
Category: DataGrid
Type: Bug Report
3
when loading same page without navigating to another page, there are some left instances of the DataGrid and the memory increase. 
In Development
Last Updated: 04 Mar 2025 15:50 by ADMIN

When a ComboBox editor is open in the DataGrid, one can use the arrow keys to go up and down the items of the combo in order to make a selection. When pressing Enter it is expected that the ComboBox gets closed and the DataGrid is still in edit mode for the same cell.

However, when the Enter is pressed - the ComboBox closes and the next row goes into edit mode - this behavior is erroneous.

In Development
Last Updated: 20 Mar 2025 09:22 by ADMIN
NullReferenceException when entering the cell in edit mode, then refreshing the data, then enter the cell in edit mode and pressing the Enter key
Unplanned
Last Updated: 19 Feb 2025 10:17 by Chris

I want to strikethrough the text in  the row based on a value. 

i checked and the column cell content style DataGridTextCellAppearance class does not expose such property.

Unplanned
Last Updated: 14 Feb 2025 12:28 by Teddy
Created by: Teddy
Comments: 0
Category: DataGrid
Type: Bug Report
1

For example we have set RowHeight to 26 with GridLineThickness = 1, GridLinesVisibility = Horizontal, and RowBackgroundStyle and AlternateRowBackgroundStyle with BorderThickness = 0.

The first row is 26px, the middle rows are 25px and the last row is 24px. So it seems the grid lines are included in the calculation of the RowHeight. 

Unplanned
Last Updated: 07 Jan 2025 08:37 by Rich
Created by: Rich
Comments: 0
Category: DataGrid
Type: Feature Request
1
In the current DataGrid implementation, the DataGrid will start with all the groups expanded. The only way to have any form of preference is to programmatically interact with the DataView after data is presented in the control  https://docs.telerik.com/devtools/maui/controls/datagrid/grouping/expand-collapse 

Requested Feature
A better approach that I am requesting a feature for is to have a property available for the DataGrid that sets this value ahead of time.

For example, you could add it as a BindableProperty on the GroupDescriptor class and on the GroupDefinition is to have an IsExapanded property.
Unplanned
Last Updated: 14 Jan 2025 09:05 by ADMIN
You can tab into the datagrid, but can't tab out of the data grid (focus trap)
Completed
Last Updated: 12 Feb 2025 09:06 by ADMIN
Release 10.0.0 (2025 Q1)
In a scenario with dynamic removing and adding of columns, there is a memory leak when clearing the columns by invoking the Clear() method of the columns collection.

A work-around is to remove the columns one by one:

    for (int i = this.dataGrid.Columns.Count - 1; i >= 0; i--)
    {
        this.dataGrid.Columns.RemoveAt(i);
    }
Unplanned
Last Updated: 17 Dec 2024 11:31 by Jérôme

Navigating to a DataGrid that is placed on third page first time the control displays when navigating to the third page. When navigating back to the second page and then go back to the third page the control do not display. 

On net 8 works as expected, the issue happens on net 9 and singleton approach is used.

Unplanned
Last Updated: 09 Dec 2024 14:36 by Parag
Provide an option to expose the AggregateError as a string and an option to customize the error through localization.
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.
1 2 3 4 5 6