Completed
Last Updated: 13 Oct 2022 11:06 by ADMIN
Release LIB 2022.3.1017 (17 Oct 2022)
Martin Ivanov
Created on: 17 Sep 2022 01:14
Category: TreeListView
Type: Bug Report
5
TreeListView: NewCell of GridViewCurrentCellChangedEventArgs in CurrentCellChanged is null when Ctrl+Up/Down is pressed

If you press Ctrl+Up/Down to change the selection and currency in TreeListView, the CurrentCellChanged event is fired. However, the e.NewCell property of the event arguments is null.

To get the new cell, use the CurrentCellInfo property of RadTreeListView.

private void RadTreeListView_CurrentCellChanged(object sender, GridViewCurrentCellChangedEventArgs e)
{
	var treeListView = (RadTreeListView)sender;
	GridViewCellInfo currentCell = treeListView.CurrentCellInfo;
}

0 comments