Unplanned
Last Updated: 28 Aug 2018 11:54 by ADMIN
Completed
Last Updated: 11 Oct 2018 10:39 by ADMIN
Completed
Last Updated: 15 Oct 2018 05:45 by ADMIN
Completed
Last Updated: 11 Oct 2018 13:25 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 1
Category: GridView
Type: Bug Report
1

			
Completed
Last Updated: 01 Nov 2018 09:19 by ADMIN
Completed
Last Updated: 07 Nov 2018 12:52 by ADMIN
A possible workaround is to show and hide the columns.

foreach (GridViewColumn col in TestGridView.Columns)
			{
				bool visibility = col.IsVisible;
				col.IsVisible = true;
				col.IsVisible = visibility;
			}
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: 01 Feb 2019 12:11 by ADMIN
Characters are lost when pressing multiple keyboard keys in quick succession.
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: 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: 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: 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: 01 Aug 2019 12:08 by ADMIN
Release LIB 2019.2.805 (08/05/2019)
The GridViewMultiColumnComboBoxColumn of RadGridView allows you to enter the edit mode of the corresponding cells even when the IsReadOnly or IsReadOnlyBinding properties of the column are set to True. 

This is also reproducible when RadGridView.IsReadOnly property is set to True

This is reproducible only when the SelectionMode is set to Multiple.

Unplanned
Last Updated: 06 Mar 2019 13:54 by ADMIN
When there are 1000 (reproduce with 500) distinct values in the Popup filter and we try to select all of them it took 15 seconds and more when using ICustomPropertyProvider.
Completed
Last Updated: 11 Sep 2019 07:28 by ADMIN
Release R3 2019
Completed
Last Updated: 01 Apr 2019 10:48 by ADMIN
Release LIB 2019.1.401 (04/01/2019)
Completed
Last Updated: 14 Oct 2019 11:11 by ADMIN
Release LIB 2019.3.1014
After a cell is edited, a tooltip set through a style trigger is not shown.
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.

Completed
Last Updated: 17 May 2019 15:17 by ADMIN
Release LIB 2019.2.520 (05/20/2019)