Unplanned
Last Updated: 15 Mar 2019 02:39 by ADMIN
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: VirtualGrid
Type: Feature Request
13
It should have similar behavior to the one in RadGridView https://docs.telerik.com/devtools/wpf/controls/radgridview/columns/column-groups
Unplanned
Last Updated: 19 Feb 2021 08:20 by ADMIN
We can introduce the option for resizing the columns in code such as Winforms feature:  https://docs.telerik.com/devtools/winforms/controls/virtualgrid/columns/resizing-columns-programmatically
Unplanned
Last Updated: 02 Jul 2019 11:53 by ADMIN
Currently the alternation brush takes precedence over the selection brush. Implement a way to change this behavior.
Unplanned
Last Updated: 14 Feb 2018 14:48 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: VirtualGrid
Type: Feature Request
5

			
Unplanned
Last Updated: 12 Jan 2018 10:41 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: VirtualGrid
Type: Feature Request
4

			
Unplanned
Last Updated: 29 Jan 2021 08:26 by ADMIN
Created by: Vladimir
Comments: 0
Category: VirtualGrid
Type: Feature Request
3
Currently the control has a FitColumnWidthToContent method. We can expose similar functionality for the rows. 
Unplanned
Last Updated: 09 Feb 2018 15:23 by ADMIN
Unplanned
Last Updated: 04 Oct 2017 15:45 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: VirtualGrid
Type: Feature Request
3

			
Unplanned
Last Updated: 06 Jan 2020 14:32 by ADMIN
Created by: Igor
Comments: 1
Category: VirtualGrid
Type: Feature Request
2
  • Option to get visible rows or cells or check if cell\ row is visible
  • Will be great to have command SelectAllVisible in addition to SellectAll

Thanks,

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.
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: 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.
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: 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.
Unplanned
Last Updated: 09 Oct 2019 08:09 by ADMIN
Expose an API to modify the Filter and Sort icons of the RadVirtualGrid.
Unplanned
Last Updated: 14 Feb 2018 14:49 by ADMIN
ADMIN
Created by: Martin
Comments: 0
Category: VirtualGrid
Type: Feature Request
1

			
Unplanned
Last Updated: 16 Oct 2024 13:24 by Martin Ivanov
Add an event (for example named QueryCursor) to the RadVirtualGrid control, that is invoked each time the control tries to replace the Mouse.OverrideCursor static property's value. The event should give information about the new cursor (also possibly for the old one) and it should allow the developer to replace the cursor with its own instance. 
Unplanned
Last Updated: 09 Oct 2024 10:00 by Martin Ivanov
The Multiple and Extended selection modes allow you to select and deselect multiple items. The deselection of items doesn't work.
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.
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.

1 2