Unplanned
Last Updated: 20 Dec 2017 17:08 by ADMIN
Currently, RadGridView's data engine relies on TypeDescriptor.GetProperties, when resolving the set of properties accessible through a certain type. Apparently, this API hides the properteis from the interface, as they are not accessible throught the concrete type.
Unplanned
Last Updated: 27 Oct 2017 13:44 by ADMIN
When setting the VirtualItemCount on refreshing the data source, the scrollbar jumps to the top. If the VirtualItemCount is initially set, the behavior is not reproduced. The workaround is to use the scrolling mechanism of the control and scroll back to the desired item.
Completed
Last Updated: 15 Feb 2018 14:34 by ADMIN
Currently, the default value of the property is true, so the presented of items in the hierarchy collection is not taken into account. This results in having visible hierarchy buttons for rows that do not have hierarchical subitems.
Completed
Last Updated: 10 Nov 2017 15:12 by ADMIN
Available in LIB version 2017.3.1113, it will be also available in the R1 2018 Release.
Completed
Last Updated: 23 Nov 2017 13:31 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: GridView
Type: Bug Report
1
Available in LIB version 2017.3.1127, it will be also available in the R1 2018 Release.
Completed
Last Updated: 23 Nov 2017 09:40 by ADMIN
When applying VQCV with custom IEnumerable as a source to the ItemsSource of the grid and filters grid through filtering control, ExportToXlsx exports wrong items.

Available in LIB version 2017.3.1127, it will be also available in the R1 2018 Release.
Completed
Last Updated: 19 Feb 2018 15:13 by ADMIN
I have a RadGridView and bind its ItemsSource and its SelectedItem to properties of the ViewModel (DataContext). I use a ViewModel for the grid items with overridden Equals and GetHashCode. When the ViewModel is created, the property bound to ItemsSource is filled and the property bound to SelectedItem is set to an item that is equal to one of the items in the collection (but not reference equal).

Problem:
When the GridView is displayed, no item is selected.

Note: I already reported this issue before: https://feedback.telerik.com/Project/143/Feedback/Details/227302-binding-itemssource-and-selecteditem-of-gridview-changes-selecteditem
but now I have managed to modify the sample project so that the problem can be reproduced. The difference to the original sample project is that Equals and GetHashCode of the Club ViewModel are overridden and the selected item is not reference equal to the item in the collection.
Declined
Last Updated: 12 Feb 2018 15:40 by ADMIN
When RadGridView is bound to a ListCollectionView and the SortDescriptions are set, columns with a SortMemberPath different from the DataMemberBinding don't display the sort indicator in the column header.

In the attached example the "Status" and "ETA" columns are sorted. "Status" header does not display the indicator due to the SortMemberPath being different from the DataMemberBinding.
Completed
Last Updated: 01 Feb 2019 12:11 by ADMIN
Characters are lost when pressing multiple keyboard keys in quick succession.
Unplanned
Last Updated: 21 Nov 2018 10:34 by ADMIN
Allow customizing the FieldFilterControl shown under the column header when the FilteringMode is set to FilterRow. Currently, you can customize this only via an implicit style or by looking into the gridview's visual tree in code. It would be useful if you can define a style per column.
Completed
Last Updated: 14 Mar 2019 12:05 by ADMIN
When all columns are readonly, the NewRowPosition is Bottom, a new row is added through the UI and the Tab key is pressed, an InvalidOperationException is thrown.

As a workaround, you can call the CommitEdit method inside a Dispatcher with a low priority in the AddingNewDataItem event:
private void Grid_AddingNewDataItem(object sender, Telerik.Windows.Controls.GridView.GridViewAddingNewEventArgs e)
        {
            Dispatcher.BeginInvoke(new Action(() =>
            {
                this.Grid.CommitEdit();
 
            }), DispatcherPriority.ApplicationIdle);
        }
Completed
Last Updated: 25 Feb 2019 09:38 by ADMIN
Setting GridViewCell content template by Style is not working with R1 2019. 
Completed
Last Updated: 13 Jun 2019 05:35 by ADMIN
Release R2 2019 SP1
When navigating through the cells with the left/right arrow keys, when the last column is reached normally the focus stays on that cell. However, when there are invisible columns on the left/right of the last visible one, the focus moves away from the grid.

As a workaround you can handle the PreviewKeyDown event of the RadGridView when the CurrentColumn is the last visible one.
Completed
Last Updated: 22 Aug 2019 11:02 by ADMIN
Release LIB 2019.2.826 (08/26/2019)
My requirement is to give certain rows in the GridView a background color that is read from the database (so it's not a fixed list of colors). I use the RowStyle with a binding to the Background property. When the bound property is null, I fall back on the Transparent color.

This transparent background in combination with a GridViewComboBoxColumn sometimes causes rows to "stick" to the top or bottom of the grid. To simulate this, a ComboBox in the grid must be opened, then you need to scroll up or down until the field is outside the viewport. In some cases, the row sticks to the top or the bottom. After inspecting the Visual Tree, it appears that the row is still part of the Visual Tree, even though it is outside the viewport. I have attached a video and a sample project where you can see and test this behavior.
Completed
Last Updated: 12 Jun 2019 15:38 by ADMIN
Release R2 2019 SP1

When the ItemsSource of the RadGridView is reset, disctinct values remain checked in the Filtering Popup. 

For a workaround, check the attached project. 

Completed
Last Updated: 03 Jun 2019 06:27 by ADMIN
Release LIB 2019.2.603 (06/03/2019)
Columns are not automatically generated when binding to an empty table passed by RadEntityFrameworkDataSource
Completed
Last Updated: 17 May 2019 15:17 by ADMIN
Release LIB 2019.2.520 (05/20/2019)
Completed
Last Updated: 11 Sep 2019 07:28 by ADMIN
Release R3 2019
Completed
Last Updated: 25 Sep 2019 15:34 by ADMIN
Release LIB 2019.3.923
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Bug Report
1

This happens only if there are many columns outside of the viewport (a scrollviewer is shown), with their TabStopMode property set to Skip.

In this case, the navigation needs some time in order to get to the next row and select the first available cell.

A possible workaround for this would be to implement a custom Keyboard Command Provider, and to replace the MoveNext command with a custom one, that moves the current cell, by setting the CurrentCellInfo property of RadGridView.