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.
Unplanned
Last Updated: 10 Nov 2020 11:13 by ADMIN
We can implement drag-scroll behavior when dragging column across the headers section of the columns.
Completed
Last Updated: 18 Mar 2014 08:54 by ADMIN
ADMIN
Created by: Yordanka
Comments: 0
Category: GridView
Type: Feature Request
1
ArgumentOutOfRandeException in FlatLayoutStrategy.RealizeRows(). The exception occurs if RadGridView.GroupRenderMode="Flat"
Completed
Last Updated: 13 Jun 2016 16:38 by ADMIN
New row in Bottom position is not visible in the child grid when the grid has no items
Completed
Last Updated: 10 Jun 2021 11:49 by ADMIN
Release R2 2021 SP
Unplanned
Last Updated: 03 Aug 2016 13:10 by ADMIN
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.
Unplanned
Last Updated: 12 Aug 2024 15:01 by Stenly
Currently, the DistinctValuesDisplayMode="Tree" property of the columns supports only values of the type of DateTime and DateTime?, which the filtering control will display in a tree-like manner.

The DateOnly and DateOnly? types are not supported, however, we can try to add such support.
Won't Fix
Last Updated: 21 May 2024 10:47 by ADMIN

The UI is not updated when an item is replaced in the bound ListCollectionView. 

Workaround: Remove the item and add a new one.

Unplanned
Last Updated: 03 Aug 2016 13:10 by ADMIN
I want to get ItemsSource by retrieving a list from a dictionary, so I need 2 parameters, but I can't use MultiBinding to do this!
Completed
Last Updated: 05 Jul 2022 14:55 by ADMIN
Release LIB 2022.2.711 (11 July 2022)

The property changed of the property bound to IsExpandableBinding (property of RadGridView) is not reflected in the row. To reproduce this the IsPropertyChangedAggregationEnabled property of RadGridView should be set to True (which is the default value) and the view model property (bound to IsExpandableBinding) should be updated consequently with other properties of the view model. For example:

myRowModel.Name = "New name";
myRowModel.IsExpandable = false;

To work this around, use the IsExpandable property of GridViewRow. You can data bind it using the RowStyle property of RadGridView. Or alternatively, set the IsPropertyChangedAggregationEnabled property of RadGridView to False.

Unplanned
Last Updated: 01 Apr 2022 09:40 by Martin Ivanov
Add a method that allows you to start a cell animation when its content (the bound property of the underlying data item) changes. 
Completed
Last Updated: 13 Jul 2016 12:06 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 0
Category: GridView
Type: Bug Report
1

			
Completed
Last Updated: 18 Aug 2022 13:34 by ADMIN
Release LIB 2022.2.822 (22 August 2022)
Column widths are not calculated correctly when star-width columns are added dynamically which leads to the appearance of a horizontal scrollbar when it is not required.
Completed
Last Updated: 11 Aug 2022 11:48 by ADMIN
Release LIB 2022.2.815 (15 August 2022)
If you add a column with IsReorderable set to False and then drop another column over it, nothing should happen. However, sometimes the drop is executed and the not reorderable column is moved to another index.

To work this around, cancel the reordering in the ColumnReordering event if the drop target column cannot be reordered.

private void RadGridView_ColumnReordering(object sender, Telerik.Windows.Controls.ColumnReorderingEventArgs e)
{
	int notResizeableColumnIndex = 1;
	if (e.NewDisplayIndex == notResizeableColumnIndex)
	{
		e.Cancel = true;
	}
}
Unplanned
Last Updated: 23 May 2022 15:11 by Margret

Currently, the range of the ScaleFactor property is between 0.1 and 4.0. We could include API to allow the user to set minimum and maximum boundaries that are between the default range (0.1 and 4.0).

For example:

  • MinimumScaleFactor=0.8 
  • MaximumScaleFactor = 1.5
Unplanned
Last Updated: 23 Mar 2022 10:49 by Martin Ivanov
Currently, the FilteringControl orders its filters in a StackPanel with a vertical orientation, which means that the distinct values list is placed above the field filters. Add an option to allow changing the position of the distinct values to the left or right (consider also bottom).

This is useful if you want a more compact view. Also, the feature will resolve several corner cases where the screen doesn't have enough vertical space for the Popup and its contents get clipped.
Completed
Last Updated: 18 Apr 2022 08:29 by ADMIN
Release LIB 2022.1.418 (18 April 2022)
When a null or string.Empty value is set to a property, which is bound to the Text property of the HighlightTextBlock(placed in a DataTemplate for the CellTemplate property of a column) an exception is thrown upon clearing the search text.