Completed
Last Updated: 05 Dec 2021 15:40 by ADMIN
Release LIB 2021.3.1206 (6 Dec 2021)

When a RadGridView cell has a validation error, a red border will appear around the cell. In this case, the top validation border is missing on the first row cells. As a workaround, you can move the ContentPresenters of the cells a little bit in the loaded event of the control.

private void RadGridViewView_Loaded(object sender, System.Windows.RoutedEventArgs e)
{
    var treeListView = sender as RadTreeListView;
    var editorPresenters = treeListView.ChildrenOfType<ContentControl>().Where(x => x.Name == "PART_ContentPresenter" && x.ParentOfType<GridViewCell>() != null);
    foreach (var item in editorPresenters)
    {
        item.Margin = new System.Windows.Thickness(1);
    }
}

Completed
Last Updated: 22 Nov 2021 10:28 by ADMIN
Release LIB 2021.3.1122 (22 Nov 2021)
The exception occurs when DBSet<T> is used with a Select query that creates new objects of type that is not included in the EDMX model. The issue appears because the internally used IQueryableCollectionView calls OfType<T>() on the IQueryable which is not allowed in the specific setup.

The exception is the following: "TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NotSupportedException: 'WpfApp4.MainWindow+MyClass'is not a valid metadata type for type filtering operations. Type filtering is only valid on entity types and complex types."

To work this around, you can call ToList() over the IQueryable object before pass it to RadGridView's ItemsSource.
Completed
Last Updated: 29 Oct 2021 11:42 by ADMIN
Release LIB 2021.3.1101 (1 Nov 2021)
Unplanned
Last Updated: 21 Sep 2021 11:58 by ADMIN
At this moment, the Search As You Type functionality can be customized. We can expose several methods so that the user can override the default search behavior and implement their own.
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: 30 Jul 2021 11:02 by ADMIN
Release R3 2021
ADMIN
Created by: Dimitrina
Comments: 0
Category: GridView
Type: Feature Request
3
As a user I would like to have Unfocused state for selected GridViewCells when SelectionMode="Cell". 
Similar to the Unfocused state for selected GridViewRows (you can check this article as a reference: http://​www.telerik.com/help/wpf/gridview-selection-unfocused-state.html).
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.