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: 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: 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: 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: 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: 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: 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: 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
Completed
Last Updated: 19 Mar 2020 11:37 by ADMIN
Release LIB 2020.1.323 (03/23/2020)
Currently, RadGridView scrolls three rows when using the mouse wheel. There should be an API that allows developers to change this setting.
Completed
Last Updated: 11 Feb 2020 08:00 by ADMIN
Release R1 2020 SP1
The RowValidating event arguments give information about the edit operation that triggered the row validation - None, Edit or Insert. However, when the edit is canceled the EditOperationType is set to Edit. Change this and provide a new value (Cancel) or use None when the validation is canceled.
Completed
Last Updated: 23 Jan 2020 12:47 by ADMIN
Release R1 2020
Created by: Dinko
Comments: 1
Category: GridView
Type: Feature Request
2
Expose a way to use Search As Type functionality with Accent Insensitive.
Completed
Last Updated: 17 Oct 2019 09:29 by ADMIN
Release R3 2019 SP1
If ExportDefaultStyles is set to true, the default styles are exported. If the user has set some settings in the ElementExportingToDocument handler, those are ignored.

Setting the property to false allows the custom setting to be applied, but the default ones are gone
Completed
Last Updated: 14 Jun 2019 13:46 by ADMIN
Release R2 2019 SP
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: 06 Dec 2018 09:08 by ADMIN
Created by: hart
Comments: 0
Category: GridView
Type: Feature Request
3
radGridView has a feature to provides a suggest and append feature.  Currently, there is the ability for the end user to inadvertently close this window.  Please provide the opportunity via a property to disable the ability to close the search window.  (currently, I am hooking the SearchPanelVisibilityChanged event, and forcing showSearchPanel = true at all times.

Scheduled for: 
The exposed property (SearchPanelCloseButtonVisibility) will be available with LIB (version 2018.3.1210) published on Monday, 10-th December, 2018.
Completed
Last Updated: 25 Nov 2019 11:48 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 1
Category: GridView
Type: Feature Request
1

FluentPalette's ScrollBarMode provides the ability to customize ScrollBar appearance in the Fluent theme. Its default value is Auto and can be set to Normal or Compact depending on the desired constant ScrollBar size.

The property is available with LIB version 2019.1.0121 released on Monday, January 21.
1 2 3 4 5