Unplanned
Last Updated: 30 Mar 2016 14:32 by ADMIN
If I add a RadLabel to a RadPanel, and set the panel AutoScroll to true, scrolling the panel will cause lines to appear.  The words get clipped.
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: 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.
Declined
Last Updated: 20 Oct 2014 14:45 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category:
Type: Bug Report
1
1. Add RadPanel on to design time surface
2. Set its AutoScroll property to true
3. Add button which is partially visible
4. Try to scroll using the scrollbar

Resolution: 
You need to use RadScrollablePanel instead RadPanel. You can refer to link http://feedback.telerik.com/Project/154/Feedback/Details/109764-add-scrolling-behavior-for-radscrollablepanel-at-design-time
Unplanned
Last Updated: 30 Mar 2016 14:33 by ADMIN
When RadPanel is set to AutoSize, it should update its size automatically when changing the visibility of some control inside it.

Workaround:
 public class CustomRadPanel : RadPanel
    {
        public override string ThemeClassName
        {
            get
            {
                return typeof(RadPanel).FullName;
            }
            set
            {
                base.ThemeClassName = value;
            }
        }

        protected override void OnLayout(LayoutEventArgs e)
        {
            base.OnLayout(e);
            int maxHeight = 0;
            foreach (Control control in this.Controls)
            {
                if (control.Visible)
                {
                    maxHeight = Math.Max(control.Height, maxHeight);
                }
            }
            this.AutoSize = false;
            this.Height = maxHeight;
        }
    }
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
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: 19 Jul 2016 12:02 by ADMIN
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.
Unplanned
Last Updated: 20 Feb 2018 13:17 by ADMIN
Controls in RadPanel redraw slowly when changing the Enabled state of the panel.

Workaround:

private void radButton1_Click(object sender, EventArgs e)
{
    if (this.radPanel1.Enabled)
    {
        this.radPanel1.Enabled = false;
    }
    else
    {
        this.radPanel1.Visible = false;
        this.radPanel1.Enabled = true;
        this.radPanel1.Visible = true;
    }
} 
 
Completed
Last Updated: 16 Dec 2016 12:17 by ADMIN
- Set RadForms Localizable to true
- Add RadScrollablePanel
- Add RadGroupBox and size its Width from end to end and set Anchor - Top, Left, Right
Close and reopen the form - RadGroupBox width have been extended and its exceeds the form.
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: 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: 17 Sep 2014 15:03 by Jesse Dyck
One should be able to scroll RadScrollablePanel at design-time
Completed
Last Updated: 20 Oct 2014 12:20 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category:
Type: Bug Report
7
RadPanel, RadScrollablePanel and RadGroupBox should support AutoSize mode, where AutoSize = true and AutoSizeMode = GrowAndShrink.
Completed
Last Updated: 11 Feb 2010 02:53 by ADMIN
ADMIN
Created by: Dobry Zranchev
Comments: 0
Category:
Type: Bug Report
1
When you set ImageKey or ImageIndex the Image property is not set.