Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Currently, you can navigate through the items in the distinct values list using the arrow keys. This changes the focused item. If you want to check/uncheck the currently focused item you need to press Tab in order to move the focus from the content presenter of the ListBoxItem to the CheckBox control.

Allow check/uncheck of the currently focused item using the keyboard (by pressing the Enter or Space key).
Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
4
Add keyboard support for the filtering, grouping and sorting features of RadGridView. The keyboard action should start the corresponding action for the column of the current cell. Keyboard actions should be included also for navigation in the UI of the FilteringControl after it gets opened.
Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Allow setting the group header rows height with a property similar to the RowHeight property of RadGridView. For example, a new GroupHeaderRowHeight property can be introduced. The new property should be included also in the UI virtualization calculations. 
Completed
Last Updated: 25 May 2023 13:36 by ADMIN
Completed
Last Updated: 25 May 2023 13:34 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: GridView
Type: Feature Request
6

			
Completed
Last Updated: 24 May 2023 06:56 by ADMIN
Release R2 2023
The functionality of the Search As You Type feature could be extended so that values of the type string can be filtered by the IsEqualTo operator, rather than the Contains one.
Completed
Last Updated: 09 Mar 2023 15:21 by ADMIN
ADMIN
Created by: Stefan Nenchev
Comments: 0
Category: GridView
Type: Feature Request
3
MergedCellsStyle and MergedCellsStyleSelector properties will be available with Q2 2016.
Completed
Last Updated: 09 Mar 2023 14:28 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 0
Category: GridView
Type: Feature Request
0

			
Completed
Last Updated: 19 Jan 2023 14:50 by ADMIN
Currently, the GridView is working with a maximum of 1000 items when it comes to distinct values. This is managed by a constant value in the source. Add a way to change this value, thus change the allowed maximum number of distinct values.
Completed
Last Updated: 16 Nov 2022 14:17 by ADMIN
Release LIB 2022.3.1121 (21 Nov 2022)
Created by: Lisitsa
Comments: 2
Category: GridView
Type: Feature Request
8
See this thread for more info:
http://www.telerik.com/forums/alternaterowbackground-doesn't-merged-with-rowstyle

It's  really common scenario, because a standard WPF DataGrid works like this.
Completed
Last Updated: 06 Jun 2022 12:28 by ADMIN
Release LIB 2022.2.606 (6 Jun 2022)

Currently, to modify the background color of this element, the default control template of the GridViewCell element needs to be extracted, and the VisualState with x:Name="Highlighted" would need to be customized.

We could include an API for modifying the background color of the HighlightTextBlock element, when it is highlighted.

Completed
Last Updated: 21 Apr 2022 14:08 by ADMIN
Release R2 2022
Especiall for wide lists it would be very helpful to be able to zoom in and out of a RadGridView, in order to see more or less columns. 

Also see: http://www.telerik.com/forums/scaling-of-radgridview-content
Completed
Last Updated: 05 Apr 2022 13:40 by ADMIN
Release R2 2022

Add a textbox which allow search and filter functionality for the distinct values in the FilteringControl of RadGridView.

In the meantime, you can check the attached project that shows one way to achieve this.

Completed
Last Updated: 28 Jan 2022 09:28 by ADMIN
Release LIB 2022.1.131 (31 Jan 2022)
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
0

Calling the BeginInsert() method of RadGridView, adds a new row at the bottom of the items and scrolls to the newly added row. However, if the vertical scrollbar is not visible and the newly added row makes the viewport so big that the scrollbar should display, the row gets clipped. Also, the vertical scrollbar that was just added is not scrolled to the bottom, which is actually why the row is clipped. Each next insert (after the scrollbar gets visible) will display the added row properly.

To work this around, you can scroll the vertical scrollbar manually to bottom. 

private void BeginInsertRow()
{
	var scrollViewer = this.gridView.FindChildByType<GridViewScrollViewer>();
	bool requestScrollToBottom = false;
	if (scrollViewer.ComputedVerticalScrollBarVisibility == Visibility.Collapsed)
	{
		var panel = this.gridView.FindChildByType<GridViewVirtualizingPanel>();
		var sumHeight = (source.Count + 1) * this.gridView.RowHeight;                
		requestScrollToBottom = sumHeight > panel.ActualHeight;                
	}
	this.gridView.BeginInsert();

	if (requestScrollToBottom)
	{
		scrollViewer.ScrollToBottom();
	}            
}

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: 02 Apr 2021 05:13 by ADMIN
Release LIB 2021.1.405 (5/04/2021)
Currently, when setting ShowToolTipOnTrimmedText, the duration of the displayed tooltip is hardcoded to 5 seconds. Add an API to change the duration.
Completed
Last Updated: 23 Feb 2021 07:59 by ADMIN
Release LIB 2019.3.1118
ADMIN
Created by: Dilyan Traykov
Comments: 2
Category: GridView
Type: Feature Request
6

			
Completed
Last Updated: 03 Nov 2020 15:34 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
When performing a sort operation by clicking on the column header the cursor changes to a busy one if the operation takes longer. The same should be implemented when performing a sort by clicking on a group cell in the grouping panel.
Completed
Last Updated: 31 Aug 2020 10:40 by ADMIN
Release LIB 2020.2.831
 Expose mechanism to choose between loading all items or load only the items having containers
Completed
Last Updated: 24 Jun 2020 13:40 by ADMIN
Release LIB 2020.2.629 (6/29/2020)
Add mechanism to exclude columns from exporting when using GridViewSpreadStreamExport
1 2 3 4 5