Completed
Last Updated: 19 Aug 2014 13:40 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 23 Jul 2014 05:57
Category:
Type: Bug Report
0
FIX. RadCollapsiblePanel - No scroll bars appear when the controls in the container need more space than the available space
To reproduce :

this.radCollapsiblePanel1.IsExpanded = false;
for (int i = 0; i < 5; i++)
{
    RadButton btn = new RadButton();
    btn.Text = "Left" + i;
    btn.Location = new Point(10, 45 * i);
    this.radCollapsiblePanel1.Controls.Add(btn);

    RadButton btn2 = new RadButton();
    btn2.Text = "Right" + i;
    btn2.Location = new Point(140, 45 * i);
    this.radCollapsiblePanel1.Controls.Add(btn2);
}

Workaround:
this.radCollapsiblePanel1.IsExpanded = false; 
this.radCollapsiblePanel1.ControlsContainer.AutoScroll = true;
0 comments