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.

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: 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: 14 Nov 2023 09:45 by Joe
Add a way to save the Filter/Sort/Group descriptors to a string or a file. 
Completed
Last Updated: 06 Nov 2023 11:58 by ADMIN
Release R3 2023 SP1
Update the FitColumnWidthToContent method to return the measured width.
Completed
Last Updated: 15 Aug 2023 13:06 by ADMIN
Release LIB 2023.2.821 (21 Aug 2023)

The CellDecorationsNeeded event isn't raised for pinned columns/rows

I would expect this event would be raised regardless of pinned state. Otherwise the UI would not be consistent when columns/rows are pinned.


// SomeVirtualGrid.xaml.cs
public SomeVirtualGrid()
{
    InitializeComponent();
    vg.PinColumnLeft(0);
    vg.PinColumnLeft(1);
    vg.PinColumnLeft(2);
}

 


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.
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. 
Completed
Last Updated: 29 May 2023 08:48 by ADMIN
Release R2 2023
Having pinned columns result in an exception when changing the ColumnWidth property of RadVirtualGrid.
Completed
Last Updated: 25 May 2023 13:35 by ADMIN
Completed
Last Updated: 27 Mar 2023 09:44 by ADMIN
Release LIB 2023.1.327 (27 Mar 2023)

Cell contents are missing when the header size is assigned through the e.Size property of the HeaderSizeEventArgs in the HeaderSizeNeeded event handler of RadVirtualGrid.

This happens only for some of the cells and when the viewport has many rows and columns.

To work this around, instead of setting the header size in the HeaderSizeNeeded event handler, use the ColumnWidth property of RadVirtualGrid.

<telerik:RadVirtualGrid ColumnWidth="50" />

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: 31 Oct 2022 12:02 by ADMIN
Release LIB 2022.3.1031(31 Oct 2022)

An ArgumentOutOfRangeException is thrown if you try to copy a pinned cell using Ctrl+C while there is a selected cell. This is reproduced by selecting an unpinned cell, then click a pinned cell to set is a current, and then press Ctrl+C to copy the pinned cell.

To work this around, override the RadVirtualGridCommands.Copy command behavior and implement the copy action from scratch.

static MainWindow()
{   
	CommandManager.RegisterClassCommandBinding(typeof(RadVirtualGrid), new CommandBinding(RadVirtualGridCommands.Copy, OnVirtualGridCopyExecuted, OnVirtualGridCopyCanExecute));
}

private static void OnVirtualGridCopyCanExecute(object sender, CanExecuteRoutedEventArgs e)
{
	e.Handled = true;
	e.CanExecute = true;
}

private static void OnVirtualGridCopyExecuted(object sender, ExecutedRoutedEventArgs e)
{
	var virtualGrid = (RadVirtualGrid)sender;
	var strBuilder = new StringBuilder();
	// DataView is a custom property in MyDataProvider (deriving from DataProvider) and it just returns this.Source (which is a protected property).
	var items = ((MyDataProvider)virtualGrid.DataProvider).DataView; 
	int pinnedColumnsCount = (int)virtualGrid.Tag;
	
	foreach (VirtualGridCellInfo cell in virtualGrid.SelectedCells)
	{
		int columnIndex = cell.ColumnIndex + pinnedColumnsCount;
		ItemPropertyInfo propertyInfo = virtualGrid.DataProvider.ItemProperties[columnIndex];
		var descriptor = (PropertyDescriptor)propertyInfo.Descriptor;
		object rowData = items.GetItemAt(cell.RowIndex);
		object cellValue = descriptor.GetValue(rowData);

		strBuilder.Append(cellValue + " ");
	}

	Clipboard.SetText(strBuilder.ToString());
}

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.
Completed
Last Updated: 06 Oct 2022 08:52 by ADMIN
Release LIB 2022.3.1010 (10 Oct 2022)
The VirtualGrid is not scrolled horizontally when selecting the most right cell in the viewport and press Right arrow key to move the selection to a cell outside of the viewport. This action should scroll the viewport horizontally to the newly selected cell. 

The scrolling happens after few selection changes (Right key presses), but even then the selected cell is aligned to the right of the viewport instead of the left which should be expected. 


To work this around, you can disable the default behavior that happens on right click and then implement custom one from scratch. To do so, you can use the PreviewKeyDown event of RadVirtualGrid.

private void VirtualGrid_PreviewKeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
	var virtualGrid = (RadVirtualGrid)sender;
	if (e.Key == System.Windows.Input.Key.Right)
	{
		var currentCell = virtualGrid.CurrentCellInfo;
		var newCellIndex = Math.Min(currentCell.ColumnIndex + 1, virtualGrid.InitialColumnCount - 1);
		var nextCell = new VirtualGridCellInfo(currentCell.RowIndex, newCellIndex, vg);
		virtualGrid.CurrentCellInfo = nextCell;
		virtualGrid.SelectedCells.Clear();                
		virtualGrid.SelectedCells.Add(nextCell);

		var viewportWidth = this.panel.ViewportWidth - virtualGrid.RowHeaderWidth;
		var newCellX = (virtualGrid.ColumnWidth * nextCell.ColumnIndex) - this.panel.HorizontalOffset;
		if (newCellX >= viewportWidth)
		{
			var delta = virtualGrid.ColumnWidth + (newCellX - viewportWidth);
			this.panel.SetHorizontalOffset(this.panel.HorizontalOffset + delta);
		}
		e.Handled = true;
	}
}

private VirtualGridCompoundPanel panel;

private void VirtualGrid_Loaded(object sender, RoutedEventArgs e)
{
	var virtualGrid = (RadVirtualGrid)sender;
	this.panel = virtualGrid.FindChildByType<VirtualGridCompoundPanel>();            
}

Completed
Last Updated: 26 Sep 2022 11:40 by ADMIN
Release LIB 2022.3.1003 (3 Oct 2022)
When the UpdateUI method is called, the selected cells are cleared. 
Completed
Last Updated: 26 Sep 2022 11:40 by ADMIN
Release LIB 2022.3.1003 (3 Oct 2022)
When passed a collection of cell regions and the SelectionMode property is Extended, the SelectCellRegion method selects only the last cell region.
Completed
Last Updated: 08 Aug 2022 13:31 by ADMIN
Release LIB 2022.2.815 (15 August 2022)
We could include this functionality in the event arguments of the CellDecorationsNeeded event, similarly to the way that the Foreground and Background properties are set. This way, the cells will have more customization options.
Completed
Last Updated: 05 Apr 2022 06:30 by ADMIN
Release R2 2022
ADMIN
Created by: Stefan
Comments: 3
Category: VirtualGrid
Type: Feature Request
23

			
1 2 3