Posted
on Aug 21, 2008
(permalink)
Hi,
I have got a problem with the "ScrollControlIntoView" Method of the Radpanelbar control.
After the "radPanelBar1_PanelBarGroupCollapsing" Event, the collapsing Item should scroll into view.
The function should be likely this.
private void radPanelBar1_PanelBarGroupCollapsing(object sender, PanelBarGroupCancelEventArgs args)
{
this.radPanelBar1.ScrollControlIntoView(this.radPanelBar1.Controls[this.radPanelBar1.Items.IndexOf(args.Group)]);
}
but it doesn't work. Please help me.