Completed
Last Updated: 19 May 2011 06:02 by ADMIN
The issue appears when you change the DPI settings for the PC and try to create an application with RadDock and RadPageView.
Completed
Last Updated: 29 Jun 2013 02:08 by ADMIN
Description: 
When using RadPageView in strip view mode with Office2007Black theme the header and footer have a label containing the text of the current page.

To reproduce:
-Add a pageView
-Add a page
-Change the theme to Office2007Black

Workaround:
((RadPageViewStripElement)radPageView1.ViewElement).Footer.Visibility = ElementVisibility.Collapsed;
((RadPageViewStripElement)radPageView1.ViewElement).Header.Visibility = ElementVisibility.Collapsed;
Completed
Last Updated: 15 Apr 2013 05:04 by ADMIN
1. Create a new project and add RadDropDownList.
2. Change the application theme to be Windows 8.
3. Dock the drop down list to bottom of your form.
4. Run the project and maximize the form.
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
The RadSplitButtonElements are rendered with the default color from the theme not with the ribbon color (like the RadDropDownButton)
Completed
Last Updated: 09 Aug 2012 15:29 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI Framework
Type: Bug Report
2
FIX. Themes - message box appears when application is deployed
Completed
Last Updated: 18 Jan 2011 16:42 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI Framework
Type: Bug Report
2
If you compare the G-mail-like labels in the HelpDesk sample application, you will notice that while in Q1 2010 they look good, in Q3 2010 SP1 there is an issue with the way they are painted. Most probably the reason is in the RoundRectShape.
Completed
Last Updated: 17 Jun 2015 13:50 by ADMIN
Completed
Last Updated: 13 Jul 2016 18:16 by Bob
ADMIN
Created by: Dimitar
Comments: 6
Category: UI Framework
Type: Feature Request
2
Add support for Coded UI in Visual Studio 2013.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
Please set the RadLabel text to "<html><a href="http://www.telerik.com">Awesome WinForms Control Suite</a></html>"
Completed
Last Updated: 15 Mar 2019 17:40 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: UI Framework
Type: Bug Report
2
RadOffice2007ScreenTipElement does not have all themes (except the ControlDefault Theme)
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
ADMIN
Created by: Nikolay
Comments: 1
Category: UI Framework
Type: Feature Request
2
One should be able to define the exact location (in coordinates) for RadScreenTip. Currently, the screentip for the quick access buttons is shown below RadRibbonBar, but it should actually be shown under the buttons.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Feature Request
2
A user should be able to define more RadToolTip settings such as delay, duration and colors.
Completed
Last Updated: 07 Sep 2012 07:38 by ADMIN
Application button in TelerikMetro and TelerikMetroBlue themes cannot be easily customized.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Feature Request
2
A wizard control will be a nice addition to the RadControls suite
Completed
Last Updated: 11 Aug 2011 08:32 by ADMIN
ADD. BorderPrimitive - add ability to show the border in dashed or dotted style
Completed
Last Updated: 13 Feb 2017 11:14 by ADMIN
Allow drag and drop among the data controls such as RadGridView, RadTreeView, RadListView, RadListControl
Completed
Last Updated: 02 Aug 2013 04:31 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: UI Framework
Type: Bug Report
2
To reproduce:
- add a grid with some sample rows
- apply TelerikMetro theme to the grid
- select the rightmost column
- you will notice that there is 1px extra space between the grid border and the column

Workaround:
- Open the TelerikMetro theme in Visual Style Builder.
- Expand RadGridView up to GridTableElement.
- In the elements window expand TableElement
- Set the padding property to 0.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Create several sample DocumentWindows in a DocumentTabStrip in RadDock and select the first of them. Now, through the overflow menu, select the last one in the row. It will appear partially and you will not be able to read the text. This should be tested in all tab alignment modes.
Completed
Last Updated: 16 Jun 2015 16:32 by ADMIN
RadOffice2007ScreenTipElement tip = new RadOffice2007ScreenTipElement();
tip.EnableCustomSize = false; //this enables custom size

In order to enable custom size the setting should be tip.EnableCustomSize = true;. The flag is incorrect.
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
Steps to reproduce:
1) Add RadDropDownButton control
2) Load Office2010Black theme
3) Define specific System.Drawing.Font:

            Font font = new Font("Arial", 12.00f, System.Drawing.FontStyle.Italic);

4) Create RadMenuItem:

            RadMenuItem myRadMenuItem = new RadMenuItem();
            myRadMenuItem.Text = "My New Item";
            myRadMenuItem.Font = font;
            radDropDownButton1.Items.Add(myRadMenuItem);  

Expected result: change the font of the RadMenuItem
Actual result: nothing happens

WORKAROUND:
1) Open Visual Style Builder and load the Office2010Black theme
2) In the Controls Structure pane navigate to RadMenu - DropDown>> RadMenuItem and select the RadMenuItemTextPrimitive item from the Elements Pane.
3) Remove FontSegoeUI8pt and ForeColorBlack repository items
4) Select the RadMenuItem item from the Elements Pane and add FontSegoeUI8pt and ForeColorBlack repository items
5) Save the theme and load it in your application