Completed
Last Updated: 17 Sep 2014 15:03 by Jesse Dyck
One should be able to scroll RadScrollablePanel at design-time
Completed
Last Updated: 19 Aug 2014 13:40 by ADMIN
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;
Completed
Last Updated: 30 Jul 2014 11:51 by Jesse Dyck
The scrollbars of RadScrollablePanel should have a ScrollState property with possible values AlwaysHide, AlwaysShow, AutoHide.
Completed
Last Updated: 18 Jun 2014 09:53 by Sergey
To reproduce:

Add a RadCollapsiblePanel to a form and set its IsExpanded property using the property grid at design time. Start the application and you will notice that the inner container is hiding the header and makes it unusable.

Workaround:

Use the following class, by passing it all your forms which have a RadCollapsiblePanel it will hide the inner container when each loads:



public class RadCollapsiblePanelIsExpandedFixer
{
    private Dictionary<Form, List<RadCollapsiblePanel>> panels = new Dictionary<Form, List<RadCollapsiblePanel>>();


    public RadCollapsiblePanelIsExpandedFixer(params Form[] forms)
    {
        foreach (Form form in forms)
        {
            foreach (Control control in form.Controls)
            {
                RadCollapsiblePanel panel = control as RadCollapsiblePanel;
                if (panel != null)
                {
                    if (!panels.ContainsKey(form))
                    {
                        panels[form] = new List<RadCollapsiblePanel>();
                    }


                    panels[form].Add(panel);
                    form.Load += form_Load;
                }
            }
        }
    }


    void form_Load(object sender, EventArgs e)
    {
        Form loadedForm = sender as Form;
        foreach (RadCollapsiblePanel panel in panels[loadedForm])
        {
            panel.ControlsContainer.Size = Size.Empty;
        }


        loadedForm.Load -= form_Load;
        panels.Remove(loadedForm);
    }
}

Completed
Last Updated: 13 Jun 2014 16:20 by ADMIN
To reproduce:

Add a RadCollapsiblePanel to a form and add a RadCheckBox inside. Set its Anchor property to be Top and Right. Collapse the RadCollapsiblePanel and expand it. You will see that the checkbox will either move, most of the times out of the visible part of the panel.



Workaround:

Use the following custom classes:

class MyCollapsiblePanel : RadCollapsiblePanel
{
    protected override RadCollapsiblePanelElement CreateCollapsiblePanelElement()
    {
        return new MyCollapsiblePanelElement(this);
    }


    public override string ThemeClassName
    {
        get
        {
            return typeof(RadCollapsiblePanel).FullName;
        }
        set
        {
        }
    }
}


class MyCollapsiblePanelElement : RadCollapsiblePanelElement
{
    public MyCollapsiblePanelElement(RadCollapsiblePanel ownerControl)
        : base(ownerControl)
    {
    }


    protected override void ExecuteCollapseFinalizations()
    {
        base.ExecuteCollapseFinalizations();


        if (this.AnimationType == CollapsiblePanelAnimationType.Reveal)
        {
            RadCollapsiblePanel panel = this.ElementTree.Control as RadCollapsiblePanel;


            foreach (Control control in panel.PanelContainer.Controls)
            {
                control.ResumeLayout(false);
            }
        }
    }


    protected override void ExecuteCollapsePreparations()
    {
        base.ExecuteCollapsePreparations();


        if (this.AnimationType == CollapsiblePanelAnimationType.Reveal)
        {
            RadCollapsiblePanel panel = this.ElementTree.Control as RadCollapsiblePanel;
            panel.ControlsContainer.ResumeChildControlsLayout();


            foreach (Control control in panel.PanelContainer.Controls)
            {
                control.SuspendLayout();
            }
        }
    }


    protected override Type ThemeEffectiveType
    {
        get
        {
            return typeof(RadCollapsiblePanelElement);
        }
    }
}



Completed
Last Updated: 12 Jun 2014 06:13 by ADMIN
When AutoSize is false, TextWrap is true, TextImageRelation is ImageBeforeText and RadLabel has a padding set, the text does not wrap correctly.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
If you set this.radScrollablePanel1.PanelContainer.VerticalScroll.Value = 170, the content will be scrolled, but the position of the scrollbar thumb will not be changed. You should call ((RadVScrollBar)this.radScrollablePanel1.Controls[1]).Value = 170 explicitly. However, this should happen automatically.

Resolution: The .NET framework does not provide a way to get notified when the values of the PanelContainer's scrolls have changed. To set the values programmatically use:

this.radScrollablePanel1.VerticalScrollbar.Value = value;this.radScrollablePanel1.HorizontalScrollbar.Value = value;
Completed
Last Updated: 09 May 2014 12:09 by ADMIN
To reproduce:

Use Nikolay's project from this post: http://www.telerik.com/forums/scrolling-using-wraplayoutpanel . Run it and click just below the scrollbar  thumb, it will now move to the bottom. Now click above it and it will move to the top. At some cases (every second click or so) you will notice that the thumb is moving but the controls inside do not.

Workaround:

Subscribe to the ValueChanged event of the scrollbar and invoke PerformLayout of the PanelContainer:

this.radScrollablePanel1.VerticalScrollbar.ValueChanged += VerticalScrollbar_ValueChanged;

void VerticalScrollbar_ValueChanged(object sender, EventArgs e)
{
    this.radScrollablePanel1.PanelContainer.PerformLayout();
}

Completed
Last Updated: 07 May 2014 11:32 by ADMIN
Use the following code:
this.radLabel1.Font = new Font("Segoe UI", 11);
this.radLabel1.Text = "<html> Sample <strong> strong </strong> text to render. <br/> Please <u><strong>underline this here</strong></u> and make it strong.";

The underlined text is not aligned correctly. If you change the font size to 14, then the empty spaces between the words in the underlined text are replaced with "_" and they are visible.

Workaround: set the TextWrap property to false
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Steps to reproduce:
1) Add RadScrollablePanel
2) Add RadTextBox control into the RadScrollablePanel
3) Set the RightToLeft property of the to RadScrollablePanel to Yes
4) Set the following properties of the RadTextBox:
this.radTextBox1.AutoSize = false;
this.radTextBox1.Multiline = true;

Expected Result: The horizontal scrollbar is working properly
Actual Result: The horizontal scrollbar of the RadScrollablePanel is showing but is not working
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category:
Type: Bug Report
0
If there is set MaxWidth and TextWrap, the RadLabel determines its size incorectly and as result there is large blank space at the bottom. This specially impact the RadMessageBox if a very long text has been used.
Completed
Last Updated: 31 Mar 2014 09:03 by Tim
When I have a control in the RadCollapsiblePanel(RCP) and copy and paste it into the same RCP, it give the control the exact same name. Then I have two conrols on my form with the same name which causes issues. Someone should look into this. I tried to repeat it in two different solution and could do it. 
Completed
Last Updated: 27 Mar 2014 16:38 by ADMIN
To reproduce:

Add a RadCollapsiblePanel to a form. Add a button somewhere to the form. Continue working at design time. Copy the button, click the inner panel inside RadCollapsiblePanel and paste the button inside. Try to perform another paste or copy the pasted button, you will see errors.

Workaround:

Prior pasting click the header of RadCollapsiblePanel, this will select the whole control and perform the paste operation successfully.
Completed
Last Updated: 11 Feb 2014 12:58 by ADMIN
When RadPanel gets focus it prevents Microsoft Windows Form key events from being fires unless the form KeyPreview property is enabled.
Completed
Last Updated: 07 Jan 2013 07:38 by ADMIN
To reproduce: add a RadScrollablePanel to a form and place some other control inside it. Anchor this control to all sides and run the project. You will see that the control's size is incorrect.
Completed
Last Updated: 23 Nov 2012 08:09 by ADMIN
If you move scrollbar thumbs with the mouse and then click the previously focused control, the RadScrollablePanel will scroll to the top of that control. This behavior is present because the scrollbars in RadScrollablePanel can receive focus.
Completed
Last Updated: 05 Nov 2012 17:28 by Jesse Dyck
Check the AutoSize property behavior at design time for Label and RadLabel.
Completed
Last Updated: 25 Jul 2012 08:51 by ADMIN
FIX. RadLabel - size goes to 0,0 after setting AutoSize to false on a newly added label to the form
Completed
Last Updated: 12 Jan 2012 05:40 by ADMIN
RadLabel has no definition for the HighContrastBlack theme.
Completed
Last Updated: 31 Aug 2011 05:33 by ADMIN
1. Add a RadLabel and use mnemonics ("&A test" for example) in its Text value. 
2. Run the application
3. Press the shortcut - for example Alt+A