Completed
Last Updated: 20 Mar 2014 11:23 by ADMIN
ADMIN
Dimitar
Created on: 13 Dec 2013 03:36
Category: TreeView
Type: Bug Report
1
FIX. RadTreeView - When the both scrollbars are shown automatically, the user cannot scroll to the last node.
To reproduce:
- Add a RadTreeView which have parent and child nodes to a form.
- Expand nodes until the both scrollbars are simultaneously shown.
- You will notice that you cannot scroll to the last item.

Workaround:
- Subscribe to the following ScrollerUpdated event handler:

void Scroller_ScrollerUpdated(object sender, EventArgs e)
{
radTreeView1.TreeViewElement.InvalidateMeasure();

}

- You can subscribe to this event with the following line of code:
radTreeView1.TreeViewElement.Scroller.ScrollerUpdated += Scroller_ScrollerUpdated;
0 comments