Unplanned
Last Updated: 06 Nov 2019 11:56 by ADMIN
Created by: Dinko
Comments: 0
Category: VirtualGrid
Type: Feature Request
1
Create a built-in method which exports the control in .xlsx format.
Completed
Last Updated: 20 Feb 2020 11:14 by ADMIN
Release LIB 2020.1.224 (02/24/2020)

VirtualGridCellClipboardEventArgs.Cell.ColumnIndex is off by 1 if you pin a column to the left.

Same with VirtualGridCellClipboardEventArgs.Cell.RowIndex if you pin a column to the top.

 

Unplanned
Last Updated: 09 Oct 2019 08:09 by ADMIN
Expose an API to modify the Filter and Sort icons of the RadVirtualGrid.
Completed
Last Updated: 28 Oct 2019 12:06 by ADMIN
Release LIB 2019.3.1028 (10/28/2019)
Only the first selected item is returned in the AddedItems argument of the SelectionChanged event when using the Extended selection mode.
Completed
Last Updated: 27 May 2021 11:41 by ADMIN
Release LIB 2021.2.531 (31/05/2021)
Setting/Binding SelectedIndex property does not change the selected item.
Completed
Last Updated: 21 May 2021 06:38 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
When the UI Filtering is disabled through the IsFilterable or CanUserFilterColumns property, the filtering button is hidden, however the mouse cursor is changed to Hand in its location and the columns cannot be filtered when clicking over it. 
Completed
Last Updated: 15 Oct 2021 13:44 by ADMIN
Release LIB 2021.3.1018 (18 Oct 2021)
CopyToClipboard method of the virtual grid copies the last selected cell.
Completed
Last Updated: 13 Sep 2017 12:47 by ADMIN
This component will have the goal to achieve fast operations when dealing with millions of records from a data source. This should be accomplished by decoupling the UI logic from data management operations like loading, filtering, sorting and grouping which should be delegated to the server. Since the grid will not have ItemsSource property, the developer will be responsible for managing the data to/from the server through a given events.

Official version of RadVirtualGrid is available from R3 2017 Release of UI for WPF.
Check what's new in R3 2017 here: 
http://www.telerik.com/support/whats-new/wpf/release-history/ui-for-wpf-r3-2017
Unplanned
Last Updated: 14 Feb 2018 14:49 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: VirtualGrid
Type: Feature Request
1

			
Completed
Last Updated: 31 May 2018 10:45 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: VirtualGrid
Type: Feature Request
1

			
Completed
Last Updated: 07 Jun 2018 06:40 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: VirtualGrid
Type: Bug Report
1

			
Unplanned
Last Updated: 25 Oct 2022 09:11 by Martin Ivanov
Currently, the RadVirtualGrid control doesn't support selecting the cells of the pinned columns. Add support for this.
Unplanned
Last Updated: 30 Dec 2022 11:32 by ADMIN
Created by: Sam
Comments: 1
Category: VirtualGrid
Type: Feature Request
1
Add Support For Header Text Orientation (Rotation) by programming On Virtual Grid.
Completed
Last Updated: 10 Jul 2023 09:39 by ADMIN
Release R2 2023 SP1
The styling applied in the HeaderCellDecorationsNeeded event is not respected for the horizontal row headers. 
Unplanned
Last Updated: 19 Jul 2023 11:52 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: VirtualGrid
Type: Feature Request
1
Currently RadVirtualGrid allows you to set the visibility of the horizontal and vertical grid lines, and also adjust their stroke brush. Add the option to set also the stroke thickness, and to allow these settings to be conditionally applied per row and column. This will allow you to change the stroke and thickness of a specific vertical or horizontal line.
Unplanned
Last Updated: 15 Nov 2023 12:26 by Martin Ivanov
The FilteringControl of a column filters a wrong column when an ItemPropertyInfo is inserted at runtime. The newly inserted property info should create a column placed between other columns (not at the end of the view). The new column filtering is wrong.
Declined
Last Updated: 19 Dec 2023 09:19 by ADMIN

HeaderSizeNeeded is fired twice with the same index and affects the header row width. 

Completed
Last Updated: 18 Dec 2023 06:53 by ADMIN
Release LIB 2023.3.1218 (18 Dec 2023)
When the TextAlignment is set to right the Filter Icon overlaps the text in the header. 
Unplanned
Last Updated: 05 Mar 2024 14:11 by Stenly

The FilterColumn method does not position the filtering popup on the passed column index when it is opened.

A workaround to this behavior would be to manually position the filtering popup using the following approach:

this.virtualGrid.FilterColumn(2);

var virtualizingCanvasBase = this.virtualGrid.ChildrenOfType<VirtualizingCanvasBase>().FirstOrDefault();

var columnsRenderInfoInfo = virtualizingCanvasBase.GetType().GetProperty("ColumnsRenderInfo", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);

var columnsRenderInfo = columnsRenderInfoInfo.GetValue(virtualizingCanvasBase);

var offsetMethodInfo = columnsRenderInfo.GetType().GetMethod("OffsetFromIndex");

var filteringPopupPropertyInfo = this.virtualGrid.GetType().GetProperty("FilteringPopup", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);

Popup filteringPopup = (Popup)filteringPopupPropertyInfo.GetValue(this.virtualGrid);

filteringPopup.HorizontalOffset = (double)offsetMethodInfo.Invoke(columnsRenderInfo, new object[1] { 2 });

The FilterColumn method should be called, in order for the filtering Popup to be created.

Unplanned
Last Updated: 05 Jun 2024 10:03 by ADMIN
Created by: Zach
Comments: 1
Category: VirtualGrid
Type: Feature Request
0
Add the Filter Row filter mode functionality to VirtualGrid similar to the GridView.