Completed
Last Updated: 06 Nov 2015 14:31 by Patrick
Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Completed
Last Updated: 06 Nov 2020 14:46 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
The exception message is: "... is not a valid metadata type for type filtering operations. Type filtering is only valid on entity types and complex types." The exception is observed when using AggregateFunctions and setting up the data with EntityFramework. 
Completed
Last Updated: 13 Jan 2015 14:47 by Benjamin
ADMIN
Created by: Dimitrina
Comments: 1
Category: GridView
Type: Bug Report
8
The problem occurs from 2014 Q2.  It should be resolved with lib version 2014.3.1319.
Completed
Last Updated: 27 Feb 2017 08:28 by Tor Andre
Version 2016.3.1024.45 (from nuget packages, if that matters)
Adding a new row with the "Add new row" button and then clicking the row indicator results in an extra row. Demo: http://recordit.co/Nn8y2z2YpI

Available in the R1 2017 SP1 Release.
Completed
Last Updated: 01 Jul 2016 11:46 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: GridView
Type: Bug Report
7

			
Completed
Last Updated: 22 Jun 2015 09:27 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: GridView
Type: Bug Report
7
Just run the attached project and scroll horizontally to the very end several times (at least two times).
I tried disabling the column virtualization but this did not help.

This issue will be resolved with Q2 2015. 
A new virtualization mechanism for ColumnGroups will be introduced with Q2 2015. A property EnableColumnGroupsVirtualization is exposed with default value True for enabled virtualization. Setting it to False will enable the old logic. 

Completed
Last Updated: 15 Jun 2018 15:51 by ADMIN
When you define a style targeted at GridViewCell with a color without transparency, horizontal grid lines are hidden.
Completed
Last Updated: 29 Aug 2016 12:50 by ADMIN
Border is not correct when FilterRow is on and Column header is wrapped. Sample and Screenshot attached.
Completed
Last Updated: 15 Mar 2016 12:35 by ADMIN
There are cells exported for the group rows, but they are empty. If you define ColumnGroupDescriptors instead GroupDescriptors, then the exported data is the correct one.
Completed
Last Updated: 20 Apr 2023 06:37 by ADMIN
Release LIB 2023.1.424 (24 Apr 2023)
Using a screen reader to read the contents of the RadGridView reads column display indexes incorrectly when columns are frozen on the right.
Completed
Last Updated: 09 Mar 2023 09:58 by ADMIN
Release R1 2023 SP1

This issue manifests when RadGridView loaded some columns first (which are working) and then add more columns. The additional columns cannot paste values in their cells.

To work this around, mark the new columns as auto generated and call one of the internal methods.

newColumn.IsAutoGenerated = true;
this
.gridView.Columns.Add(newColumn); var collectionViewPropInfo = this.gridView.Items.GetType().GetProperty("CollectionView", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic); var qcv = (QueryableCollectionView)collectionViewPropInfo.GetValue(this.gridView.Items); var methodInfo = qcv.GetType().GetMethod("OnElementTypeChanged", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic); methodInfo.Invoke(qcv, new object[0]);

Completed
Last Updated: 11 Aug 2016 14:04 by ADMIN
Columns data gets overlapped when columns are hidden and shown again
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: 11 Apr 2022 07:20 by ADMIN
Release LIB 2022.1.411 (11 April 2022)

The vertical scrollbar of RadGridView disappears in some cases when the last parent item is expanded and then collapsed. The issue reproduces only with the Flat GroupRenderMode and when UseLayoutRounding property is set to True.

The workaround is to avoid setting the UseLayoutRounding property to True.

 

Completed
Last Updated: 14 Mar 2014 10:36 by ADMIN
IsReorderable of a column is not respected when ReorderColumnsMode is different than the default one

Fixed with LIB version 2014.1.317.
Completed
Last Updated: 12 Jan 2016 17:18 by ADMIN
Change AlternateRowBackground (runtime) has only effects after scrolling in grid or after rebinding it.
Completed
Last Updated: 30 Oct 2015 10:49 by ADMIN
When KeyboardNavigation.TabNavigation is set to Once, RadGridView does not lose the focus after the second time it's focused.
1 2 3 4 5 6