Completed
Last Updated: 05 Jun 2024 11:15 by ADMIN
Release 2024 Q2
An ArgumentException is raised when the DataGrid is unloaded in specific scenarios with the latest Q1 2024 release
Completed
Last Updated: 19 Feb 2024 07:24 by ADMIN
Release R1 2021 SP
 System.ObjectDisposedException:(Cannot access a disposed object) is thrown when switching tabs fast in RadTabView.
Completed
Last Updated: 15 Feb 2024 14:30 by ADMIN
Release R1 2020
an issue when changing the orientation of the phone to landscape the items of the grid are rendered, then when go back to portrait the items that aren't rendered in the screen disappear.
Completed
Last Updated: 19 Jul 2023 14:23 by ADMIN
Release R2 2023 SP1
Occasionally the DataGrid horizontal scrolling does not work properly after changing its ItemsSource.  Still, tapping on any item, make it possible to scroll again.
Completed
Last Updated: 08 Jun 2023 08:15 by ADMIN
Release R2 2023
Created by: Stefan
Comments: 0
Category: DataGrid
Type: Feature Request
4
Add the ability to specify a Template that should be shown when the DataGrid is empty.
Completed
Last Updated: 27 Jan 2023 11:38 by ADMIN
Release R1 2023
ADMIN
Created by: Stefan Nenchev
Comments: 3
Category: DataGrid
Type: Feature Request
21

			
Completed
Last Updated: 14 Sep 2022 13:49 by ADMIN
Release R3 2022
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: DataGrid
Type: Feature Request
20

			
Completed
Last Updated: 14 Sep 2022 13:48 by ADMIN
Release R3 2022
Created by: Rémi
Comments: 2
Category: DataGrid
Type: Feature Request
8

For Aggregates purpose or just for diplaying some others datas, footer for column in DataGrid it's needed feature.

Completed
Last Updated: 11 May 2022 14:47 by ADMIN
Release R2 2022
ADMIN
Created by: Yana
Comments: 1
Category: DataGrid
Type: Feature Request
15

			
Completed
Last Updated: 19 Jan 2022 13:20 by ADMIN
Release R1 2022
It would be nice if we can just bind a .net DataTable or DateView as ItemsSource to the RadDataGrid.
Completed
Last Updated: 16 Jun 2021 11:41 by ADMIN
Release R2 2021 SP1
The last columns are disappearing on dynamic content changed and are rendered as soon as the user taps on any item.  The issue occurs with devices/emulators with bigger screens when there are more columns shown -  tablets or devices in landscape mode.
Completed
Last Updated: 05 Feb 2021 13:02 by ADMIN
Release R1 2021
ADMIN
Created by: Lance | Senior Manager Technical Support
Comments: 5
Category: DataGrid
Type: Feature Request
4
Currently, hiding the 'more' button in the of the DataGrid filter Options panel is not possible.

This is a feature request to add such an option to the DataGrid column styling options (potentially as a property of the HeaderStyle).
Completed
Last Updated: 21 Jan 2021 12:32 by ADMIN
Release R1 2021
Completed
Last Updated: 07 Dec 2020 16:09 by ADMIN
Release 2020.3.1207 (R3 2020 minor release)

Flicker can be observed when datagrid is manipulated/updated, or entering in edit mode. One example is tapping on a column header - when there is a column with a HeadetTemplate, the column header flickers. Other example is to double-tap a cell to go in edit mode. Also the behavior can be reproduced when DataGrid TemplateColumn is used.

Completed
Last Updated: 22 Oct 2020 15:31 by ADMIN
Release R3 2020 SP1

filtering can no longer be applied as the "Reset" and "Filter" buttons are disappeared.

workaround use Xamarin.Forms v 4.8.0.1269

Completed
Last Updated: 13 May 2020 14:17 by ADMIN
Release R2 2020
Provide a way to associate a FilterDescriptor with a TemplatedColumn
Completed
Last Updated: 19 Feb 2020 15:44 by ADMIN
Release R1 2020 SP1
 If you open a datagrid's filter pop-up, navigate away from the page, then go back to the page, the filter pop-up will still be open.

If you attempt to close it, by way of the "X", the app will crash. In debug mode, a null reference error will occur. If navigating away from the grid with the filter closed, no crash will happen.
Completed
Last Updated: 15 Jan 2020 12:12 by ADMIN
Release R1 2020
While changing the orientation on mobile device to portrait or landscape, the columns' size is not calculated properly and the columns overlap on one another.
Completed
Last Updated: 19 Nov 2019 12:06 by ADMIN
Release 2019.3.1119 (R3 2019 minor release)
When Filtering is applied to the RadDataGrid control and PropertyChanged is invoked by the visualized business object, the DataGrid rows are reordered inconsistently on tap
Completed
Last Updated: 19 Nov 2019 12:05 by ADMIN
Release 2019.3.1119 (R3 2019 minor release)
Created by: Safan
Comments: 0
Category: DataGrid
Type: Bug Report
1

Refer to the attached reproducible.

1. Run app and apply a filter: "Contains 0"

2. Notice #40 is in the correct location, between #30 and #50

3. Press the button on the bottom of the page to go BlankPage and then navigate back.

4. Observe #40 is now at the end of the rows even though the filter is clearly applied.

Look in MainPageViewModel.cs lines 42 to 49. When the navigation back occurs, this code is executed.  I can reproduce the problem with both Replace and Add+Remove operations.

public override void OnNavigatedTo(INavigationParameters parameters)
{
    base.OnNavigatedTo(parameters);

    if (!parameters.ContainsKey("from"))
    {
        var items = new ObservableCollection<MyModel>();
        for (var i = 1; i <= 100; i++)
            items.Add(new MyModel { Number = i.ToString() });
        Items = items;
    }
    else
    {
        var item = Items[39];

        // Bug Test #1 - using ObservableCollection Reset
        Items[39] = item;

        // Bug Test #2 - using ObservableCollection Remove & Add
        //Items.RemoveAt(39);
        //Items.Insert(39, item);
    }
}

1 2 3