Completed
Last Updated: 25 Apr 2016 09:19 by Milan
Completed
Last Updated: 07 Sep 2016 09:39 by ADMIN
Expecting the popup to be kept open, its zorder is still on top of the grid it is linked on, but not on top of other applications whose zorder is closer to the user than the application window containing the grid.
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: 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: 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: 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: 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: 07 Apr 2014 11:42 by ADMIN
Completed
Last Updated: 14 Jun 2019 13:46 by ADMIN
Release R2 2019 SP
Completed
Last Updated: 15 Aug 2018 09:52 by ADMIN
Completed
Last Updated: 02 Jun 2014 13:32 by ADMIN
RadGridView is consuming resources when its IsBusy property is set to False in Windows8, Windows8Touch, Office2013 themes. 
Completed
Last Updated: 22 Aug 2014 15:19 by ADMIN
ADMIN
Created by: Dimitrina
Comments: 0
Category: GridView
Type: Feature Request
0
Resolved with lib version 2014.2.0825.
Completed
Last Updated: 28 Jul 2014 07:35 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: GridView
Type: Feature Request
0
Resolved with lib version 2014.2.721.
Completed
Last Updated: 31 Mar 2016 10:58 by Toby
The problem should be resolved with lib version 2016.1.125.
Completed
Last Updated: 30 Jun 2014 11:16 by ADMIN
Completed
Last Updated: 02 Oct 2015 08:33 by ADMIN
GroupFooterRowStyleSelector is not persisted, when you expand and collapse a group
Completed
Last Updated: 29 Aug 2014 14:34 by ADMIN
ADMIN
Created by: Nick
Comments: 0
Category: GridView
Type: Feature Request
0
Resolved with lib version 2014.2.0825.
Completed
Last Updated: 25 Apr 2016 09:16 by ADMIN
With R2 2016 RadGridView will introduce ValidationType property that indicates what type of validation input should be processed(INotifyDataErrorInfo, IDataErrorInfo, DataAnnotations).
Completed
Last Updated: 16 Oct 2014 08:41 by ADMIN
ADMIN
Created by: Maya
Comments: 0
Category: GridView
Type: Feature Request
0
The problem will be fixed with Q3 2014 official version.
Completed
Last Updated: 22 Jun 2015 11:01 by ADMIN
ADMIN
Created by: Nick
Comments: 2
Category: GridView
Type: Feature Request
0
The fix will be available with Q2 2015.