Completed
Last Updated: 29 Oct 2015 07:20 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 09 Jun 2015 08:07
Category: TreeView
Type: Bug Report
0
FIX. RadTreeView - editor is not closed when scrolling, hence it is moved to other nodes due to the virualization
To reproduce:

public Form1()
{
    InitializeComponent();

    for (int i = 0; i < 20; i++)
    {
        this.radTreeView1.Nodes.Add("Node"+i);
    }
    this.radTreeView1.AllowEdit = true;
}

The attached gif file illustrates the steps.

Workaround:
 this.radTreeView1.VScrollBar.ValueChanged+=VScrollBar_ValueChanged;
private void VScrollBar_ValueChanged(object sender, EventArgs e)
{
    this.radTreeView1.EndEdit();
}
Attached Files:
0 comments