Completed
Last Updated: 29 Oct 2021 11:42 by ADMIN
Release LIB 2021.3.1101 (1 Nov 2021)
Completed
Last Updated: 17 Sep 2021 10:47 by ADMIN
Release LIB 2021.3.920 (20 Sep 2021)
In some scenarios, when selecting all items and applying some grouping and filtering criteria, the SelectedItems collection contains some items which have been filtered out. 
Completed
Last Updated: 01 Jul 2021 06:12 by ADMIN
Release LIB 2021.2.705 (5 Jul 2021)
In this case, all columns have fixed width. Resizing one of the right frozen columns is not working as expected.
Completed
Last Updated: 11 Jun 2021 18:09 by ADMIN
Release R2 2021 SP1

If you reference both Telerik.Windows.Controls.GridView and Telerik.Windows.Controls.Data assemblies and you try to access the ControlPanelItemCollection class in XAML using the "telerik" schema, an error appears. This happens because classes with this name are available in both assembly and both classes are mapped to the "telerik" schema.

To work this around, use a concrete namespace instead of the "telerik" schema. For example:

 xmlns:gridView="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView"

Completed
Last Updated: 10 Jun 2021 11:49 by ADMIN
Release R2 2021 SP
Completed
Last Updated: 09 Jun 2021 11:10 by ADMIN
Release R2 2021 SP1
Setting the IsVisible property of a column, which is frozen on the right size by setting the RightFrozenColumnCount property, does not work as intended. 
Completed
Last Updated: 09 Jun 2021 08:47 by ADMIN
Release R2 2021 SP1

If you set a RowHeight value that is smaller than the height of a pinned row, the last row is clipped when you scroll to bottom. Based on the RowHeight and the number of pinned rows, you can have the last row partially clipped or fully clipped. Also, you can have more than one rows that are cut.

To work this around set the Padding and MinHeight properties of the GridViewPinButton.

<telerik:RadGridView.Resources>
       <!-- In case you are using NoXaml dlls, set the following property to the Style object: -->
       <!-- BasedOn="{StaticResource GridViewPinButtonStyle}" -->
	<Style TargetType="telerik:GridViewPinButton">
		<Setter Property="MinHeight" Value="0" />
		<Setter Property="Padding" Value="2" />
	</Style>
</telerik:RadGridView.Resources>

Completed
Last Updated: 09 Jun 2021 05:51 by ADMIN
Release R2 2021 SP1
In Example 1 from Edit an item outside RadGridView article, we are suggesting to replace an item to trigger collection changed. This way the sorted/filtered collection will be updated. In this case, we are replacing the item with the same one. This will lose the selection after replacing it several times.
Completed
Last Updated: 31 May 2021 11:37 by ADMIN
Release R2 2021 SP1

Hi,

as you can see in the screenshot below the new dark Material Theme has the bug, that the selected row is white if it's not focused.

I can not find in the code where this white color comes from.

I encountered it only in the GridView and TreeListView yet.

Also I can say, that it wasn't like that before the new update. I made my own dark material theme and it didn't appear like this before.

 

Greetings Benedikt

 

Completed
Last Updated: 31 May 2021 08:04 by ADMIN
Release LIB 2020.2.323 (03/23/2020)

To reproduce this:

  1. Set the GroupRenderMode of RadGridView to Flat.
  2. Page RadGridView using RadDataPager.
  3. Scroll to the last row in the view. Or scroll to any row so that few of the rows above are not longer visible.
  4. Expand the row details and scroll down more until only the parent row is visible.
  5. Collapse the row details. At this point, the vertical scrollbar disappears and the upper rows are not brought into the view as expected when the row details gets collapsed.

To work this around call the Rebind() method of RadGridView on RowDetailsVisibilityChanged event.

 

private void RadGridView_RowDetailsVisibilityChanged(object sender, Telerik.Windows.Controls.GridView.GridViewRowDetailsEventArgs e)
{
	if (e.Visibility == Visibility.Collapsed)
	{
		this.gridView.Rebind();
	}        
}

 

Completed
Last Updated: 31 May 2021 07:21 by ADMIN
Release LIB 2021.1.315 (03/15/2021)
Scrolling the RadGridView in the dropdown of the GridViewMultiColumnComboBoxColumn through mouse click&drag does not work. 
Completed
Last Updated: 31 May 2021 06:36 by ADMIN
Release LIB 2021.2.531 (31/05/2021)

This behavior is reproducible when the HorizontalAligment property of the control or its parent element is set to Left.

Completed
Last Updated: 31 May 2021 05:02 by ADMIN
Release LIB 2021.2.531 (05/31/2021)

The issue reproduces in the following situation.

  • The selection mode is Extended and the selection unit is Mixed.
  • Multiple rows are selected.
  • Cells of the selected rows are updated.
  • The column of the updated cells is previously sorted (before the update of the cell values).
  • DataTable is used to populate the RadGridView control.

To work this around set the SelectionUnit property of RadGridView to FullRow or use a collection type like ObservableCollection<T> instead of a DataTable.

Completed
Last Updated: 21 May 2021 10:19 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
When only single cells have been selected and the grid is sorted/grouped, the selection of these cells is cleared. However, the SelectedCellsChanged event is not fired.
Completed
Last Updated: 21 May 2021 10:19 by ADMIN
Release LIB 2021.2.525 (25/05/2021)

If the DisplayIndex of the columns is set when they are initialized, ColumnGroups are not displayed.

As a workaround, you can set the DisplayIndex after the columns are initialized. 

 

Completed
Last Updated: 20 May 2021 06:30 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
In this case, the business object has properties with similar names "A" and "a". The default binding does not respect upper and lower cases for similar naming.
Declined
Last Updated: 13 May 2021 10:37 by ADMIN

Hello, 

I believe that I have found a bug with the delete keyboard functionality using the delete key. Below are the steps to reproduce:

  1. Click on any row of the grid view.
  2. Observe the row is selected.
  3. Click any cell in the selected row to enter into edit mode.
  4. Exit edit mode using escape.
  5. Observe the row is still selected.
  6. Now click the delete button.
  7. Observe the delete operation doesn't work.

 

Note that if the user selects a new row and then selects the previous row the delete works. 

Demo to illustrate is in SDK sample browser.

Grid View Examples - Custom Keyboard Command Provider

Please let me know if you need any additional information.

Thank you.

Completed
Last Updated: 26 Apr 2021 09:05 by ADMIN
Release LIB 2020.3.1311 (1/11/2021)
In this scenario, we have two grids in different windows on different threads. When reordering columns in the first grid and reordered rows in the second will lead to an exception: System.InvalidOperationException: The calling thread cannot access this object because a different thread owns it.
Completed
Last Updated: 15 Mar 2021 14:29 by ADMIN
Release LIB 2021.1.322
Created by: LindenauAtSOG
Comments: 2
Category: GridView
Type: Bug Report
3

The class Telerik.Windows.Data.QueryableExtensions has a static dictionary "providerIsEntityFrameworkCore"

That dictionary will hold a reference (forever) to a collection that is set as Source for the GridView.

Reason is that non IQueryable-types will be wrapped in a EnumerableQuery<T> that will return itself as the provider (https://referencesource.microsoft.com/#System.Core/System/Linq/SequenceQuery.cs,44), encapsulating the reference.

This must be something introduced recently.