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.

Completed
Last Updated: 22 Feb 2021 16:35 by ADMIN
Release R1 2021 SP1

In this particular case, the DisplayIndex properties of the parent and child grid are bound to property from our ViewModel. When the parent grid columns are reordered runtime, the columns of the child grid are also reordered. But when sorting is performed by clicking on a column header, an exception is thrown.

Completed
Last Updated: 18 Feb 2021 15:23 by ADMIN
Release R1 2021 SP
Replacing all Columns, Group, and Sort descriptors while keeping the same ItemsSource causes the grid rows to have the wrong heights.
Completed
Last Updated: 18 Feb 2021 12:16 by ADMIN
Release R1 2021 SP
When the items in the bound collection are replaced while the RadGridView is sort and group, ArgumentOutOfRangeException is thrown.
Completed
Last Updated: 17 Feb 2021 12:19 by ADMIN
Release R1 2021 SP
ArgumentException: ''' is not a valid value for property 'Name'.' Such an exception is thrown when clicking on the Add New Row button when the RadGridView is populated with objects that return null in their ToString method. 
Won't Fix
Last Updated: 10 Feb 2021 09:59 by ADMIN
The RadGridView's is bound to an empty DataView and grouped by a GridViewComboBoxColumn. When adding items during runtime, setting the SelectedItem in code or selecting through the UI -> the SelectedItem remains null. 
Completed
Last Updated: 08 Feb 2021 11:40 by ADMIN
Release LIB 2021.1.208 (2/8/2021)
 An error is thrown while exporting RadGridView using the SpreadStreamExport and a GroupDescriptor is added.
Completed
Last Updated: 27 Jan 2021 13:53 by ADMIN
Release LIB 2021.1.201

Changing the TextAlignment property of the GridViewExpressionColumn doesn't refresh the cells, thus the change is not visible in the UI.

To work this around, remove and add again the corresponding column in the Columns collection of RadGridView. Or define a CellTemplate and use a TextBlock control with its TextAlignment bound to the column's property.

<telerik:GridViewExpressionColumn.CellTemplate>
	<DataTemplate>
		<TextBlock Text="{Binding}" 
				   TextAlignment="{Binding RelativeSource={RelativeSource AncestorType=telerik:GridViewCell}, Path=Column.TextAlignment}"  />
	</DataTemplate>
</telerik:GridViewExpressionColumn.CellTemplate>
 

Completed
Last Updated: 27 Jan 2021 13:04 by ADMIN
Release LIB 2021.1.201
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Bug Report
0

Memory leak appears when exporting to Xlsx and Pdf formats.

To work this around, you can call one of the export methods GridViewDataControlExportExtensions with empty arguments.

Workbook workbook = this.gridView.ExportToWorkbook();
try
{
	GridViewDataControlExportExtensions.ExportToWorkbook(new RadGridView(), new GridViewDocumentExportOptions());
	GridViewDataControlExportExtensions.ExportToWorkbook(null);
}
catch (ArgumentException)
{
}        

Declined
Last Updated: 09 Nov 2020 14:55 by ADMIN

I am using a RadGridView to display appointments. I am adding paging to the control with RadDataPager. I am setting the ItemSource property for the RadGridView to {Binding Path=PagedSource, ElementName=unscheduledWorkOrdersRadDataPager }. I am then overriding the ConvertDraggedData(object data) method and using the DataObjectHelper class in order to obtain data from the object data parameter and then setting the returned IEnumerable<IOccurence> accordingly.

The problem is that whenever I added paging to the RadGridView. The DataObjectHelper is not able to properly retrieve the dragged data from the object data parameter.

Completed
Last Updated: 09 Nov 2020 14:20 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
When a GridViewRow has a validation error, a ToolTip with the error will appears on mouseover. If we scrolled the RadGridView, which has rows with errors, the tooltip starts to appear on valid rows. This behavior is reproducible when using the RowValidating event to validate the data.
Completed
Last Updated: 09 Nov 2020 13:27 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: GridView
Type: Bug Report
3
As Windows application use a common clipboard, there is a potential risk for causing a ComInterop exception while copying data from RadGridView. Workaround: Process exceptions in application logic
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: 04 Nov 2020 13:00 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
The selection inside the cells of the GridViewMultiColumnComboBoxColumn is not refreshed when its ItemsSource is updated during runtime. 
Completed
Last Updated: 30 Oct 2020 15:05 by ADMIN
Release R3 2020
A NullReferenceException is raised when trying to edit a GridViewMultiColumnComboBoxColumn and the RadGridView's ItemsSource is a DataView.
Completed
Last Updated: 29 Oct 2020 10:31 by ADMIN
Release R3 2020 SP1
Unplanned
Last Updated: 25 Oct 2020 11:36 by SÅ‚awomir
If in the content of RadGridView.ControlPanelItem has a binding with a RelativeSource or ElementName and the grid is placed in the collapsed UserControl, a binding error is thrown in the output window.
Completed
Last Updated: 16 Oct 2020 12:59 by ADMIN
Release R3 2020 SP
Clearing and updating the ColumnGroups collection results in degraded performance when there is a big amount of column groups.
Completed
Last Updated: 15 Oct 2020 13:40 by ADMIN
When invalid rows that were loaded but not in viewport get valid, the invalid state (row validation indicator) is still visible.
Completed
Last Updated: 15 Oct 2020 11:57 by ADMIN
Release LIB 2020.3.1019 (10/19/2020)
When SpreadStreamExport.RunExportAsync() method is exporting large data it could take a while to export the grid. While exporting the grid, the ItemsSource changes to a new one with a different number of columns, NullReferenceException is thrown.