Completed
Last Updated: 27 Dec 2016 11:56 by ADMIN
Example: Add a single tile in RadPanorama, set it with RoundRectShape(12) and set an image with size equal to the size of the tile. The image will be drawn outside the bounds of the shape.
Unplanned
Last Updated: 30 Mar 2016 13:54 by ADMIN
Apply a RoundRectShape with Radius 25 to the RootElement of a RadPanel and set panel's BackgroundShape property. Note that the image is not clipped with the correct 25 radius.

Workaround: to avoid the issue through resetting the ApplyShapeToControl property when the panel is resized.
 void radPanel_SizeChanged(object sender, EventArgs e)
        {
            RadPanel panel = sender as RadPanel;
            if (panel != null)
            {
                panel.RootElement.ApplyShapeToControl = false;
                panel.RootElement.ApplyShapeToControl = true;
            }
        }
Unplanned
Last Updated: 15 Aug 2017 09:36 by Bekir
ADMIN
Created by: Boryana
Comments: 1
Category: UI Framework
Type: Feature Request
6
Currently, html-like formatting does not work for right-to-left languages
Unplanned
Last Updated: 30 Mar 2016 13:55 by ADMIN
Try to add a relative theme path in RadThemeManager
Completed
Last Updated: 26 Nov 2012 09:01 by ADMIN
Steps to reproduce:
1. Add a separator to a form
2. Set Orientation to Vertical
3. Set the theme to TelerikMetro or TelerikMetroBlue

You will see that the separator is not drawn correctly.
Completed
Last Updated: 20 Nov 2012 07:58 by ADMIN
To reproduce add dock with desert theme and three document windows. Click the first, then the second and then the third. The first and the second will be overlapped.
Completed
Last Updated: 14 Nov 2012 03:10 by ADMIN
The design of RadButton in ControlDefault Default state should be implemented through setting the BorderBoxStyle to OuterInnerBorder. When the default drawing is used, however, the inner border introduces visual glitches in the control's corners.
Declined
Last Updated: 10 Feb 2014 07:55 by ADMIN
1. Create a new form.
2. Add Panel
3. Change its ForeColor and Font properties
4. Drop a RadLabel inside, it will not change its Font and ForeColor properties.
Comment: this is not an issue. We changed our behavior in order to achieve consistent look regardless of the position of RadLabel. Now the theme defines the ForeColor and the Font of this control.
Completed
Last Updated: 02 Nov 2012 07:58 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI Framework
Type: Bug Report
0
1. Create a plugin for AutoCAD.
2. Place RadListView in your user control and set tooltips.
3. Test the plugin and try to show a tool tip.
Completed
Last Updated: 29 Oct 2012 09:58 by ADMIN
Office2007Black Theme cannot render the state of a diabled RadCheckBox
Declined
Last Updated: 26 Dec 2014 11:31 by ADMIN
ADMIN
Created by: Jack
Comments: 1
Category: UI Framework
Type: Feature Request
0
This component will be a grid layout that is similar to the WPF/Silverlight grid control. As the form is resized, it resizes all contained controls proportionally.
Completed
Last Updated: 05 Oct 2012 10:50 by ADMIN
FIX. RadCheckBox - can't replace the default check mark with image
Declined
Last Updated: 05 Aug 2016 14:02 by ADMIN
This causes multiple controls updates which reduces the application performance. Having 3 labels will fire the event 45 times which will update the rest of the bound controls 45 times.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
If you have a RadSplitContainer with three panels, the image set to the grip will not be shown for the second splitter.
Completed
Last Updated: 18 Aug 2014 10:09 by ADMIN
1. Create a new project and add RadLabel.
2. In form constructor apply PositionOffset animation and set its apply delay to 200.
3. Run the project.
Completed
Last Updated: 21 Sep 2012 04:07 by ADMIN
To reproduce:
- Create a form
- Add grid
- Open Property Builder
- Check the ThemeName property drop down -> the theme name is available
Declined
Last Updated: 23 Sep 2014 08:12 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI Framework
Type: Feature Request
0
Duplicate of: http://feedback.telerik.com/Project/154/Feedback/Details/112597-add-organisational-chart
Unplanned
Last Updated: 30 Mar 2016 13:49 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
6
If you dock a control in RadPanel, this control will cover the borders of RadPanel. This behavior is different from the behavior of the standard Panel behavior where the border is not covered, because of a Padding of 1.

We should consider whether this change should be introduced in our suite as this could modify the design of our customers' layouts in a way then don't want.

Workaround: this.radPanel1.Padding = new Padding(1);
Unplanned
Last Updated: 15 Aug 2017 09:33 by ADMIN
Currently, the Dash (hence Dot) border works only if the BoxStyle is SingleBorder. It will be nice if we have show Dash border only for certain sides, for example only at top and bottom. In short, it should work when BoxStyle is FourBorders.
Completed
Last Updated: 20 Oct 2014 13:54 by ADMIN
Let's say that we have a RadLabel and want to show Dot style border for it. The Dot, however, appears as thinner Line when we set the DashStyle to Dot.