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
Unplanned
Last Updated: 16 Apr 2019 12:42 by ADMIN
Created by: Safan
Comments: 1
Category: DataGrid
Type: Bug Report
10

I have an custom column extending "DataGridTextColumn". This column overrides "CreateGroupDescriptor" methods and returns an instance of "DelegateGroupDescriptor". Once we group items in this column it can never be cleared/un-grouped.

 

Any help would be heighly appreciated. Thanks in advance.

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.
Unplanned
Last Updated: 17 Apr 2020 06:04 by ADMIN
If you open the filtering UI of a TextColumn, start typing into the "Enter filter criteria" field and press "Reset" or "Filter", the filtering UI is closed, still, the soft keyboard is not hidden.
Unplanned
Last Updated: 07 Aug 2019 14:40 by ADMIN
Applying custom filter to the datagrid and removing column at the same time disables the horizontal scrollbar - in scenario when the content of the column is bigger than the screen size.
Unplanned
Last Updated: 15 Aug 2023 06:32 by ADMIN

Giving a RadDataGrid where columns are mostly empty, scroll to the right and mutate the data. All the rows without data visible disappear until the user scrolls back to columns that have data.

Link to video: https://youtube.com/shorts/_Zdm2FIowP8?feature=share

Sample project attached.

Unplanned
Last Updated: 06 Jan 2021 14:53 by ADMIN
In case RadDataGrid is populated with large amount of items (~5000 items with 10 columns), scrolling horizontally to the right most side and reloading the data ( updating the ItemsSource) results in a non-responsive app.
Declined
Last Updated: 07 Apr 2020 09:58 by ADMIN

To reproduce:

Step 1 - File > New > LoadOnDemandCollection Demo

Follow the LoadOnDemandCollection documentation https://docs.telerik.com/devtools/xamarin/controls/datagrid/load_on_demand#loadondemandcollection

Step 2 - Deploy to UWP

=> Observe the DataGrid will be stuck in busy state after the initial set of items load

Unplanned
Last Updated: 19 Dec 2019 08:36 by ADMIN
Created by: OLIFEL
Comments: 1
Category: DataGrid
Type: Bug Report
2

You can reproduce this by changing input language to any region that uses a comma decimal separator (e.g. Duetsch). The comma is ignored, ultimately corrupting the data

Unplanned
Last Updated: 27 Aug 2020 11:12 by Mahmoud
The horizontal scrollviewer is not visualized initially when the column header text is longer than the columns' text. Still, tapping on any item makes it possible to scroll.
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: 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: 22 Nov 2018 16:14 by ADMIN
Available in minor release 2018.3.1122. It will also be available in the R1 2019 release.
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 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);
    }
}

Unplanned
Last Updated: 15 Oct 2019 09:34 by ADMIN

Column names in column selector are not visible in Android the first time the column selector is shown. This happens only in the case UserFilterMode is disabled. 

Completed
Last Updated: 23 Jul 2019 05:09 by ADMIN
Release 2019.2.708 (R2 2019 minor release)
When the UserSortMode is set to single and it is sorted by a Template column that has DelegateSortDescriptor when we tap on another column the SortDirection of the Template is still visible.
Completed
Last Updated: 19 Jun 2019 12:48 by ADMIN
Release R2 2019 SP1
when the LoadOnDemand mode is set to Automatic and there are no more items for loading, the automatic load on demand is called
1 2 3 4 5