Completed
Last Updated: 29 Oct 2015 12:00 by ADMIN
ADMIN
Dimitar
Created on: 03 Sep 2015 08:20
Category: TreeView
Type: Bug Report
0
FIX. RadTreeView - exception when the BeginEdit method is executed after the user has scrolled.
To reproduce:
- Add items to the tree view (scrollbar must appear)
- Add context menu item which adds a new node and puts it in edit mode.
- Add a new node with the context menu item, scroll to the bottom, add item again.
- Scroll up and add item one more time.

Workaround:
void treeView_EditorRequired(object sender, TreeNodeEditorRequiredEventArgs e)
{
    e.Editor = new TreeViewTextBoxEditor();
}
0 comments