Completed
Last Updated: 23 Apr 2013 03:44 by ADMIN
Windows7Theme - RadGridView has incorrect behavior when AutoSizeRows property is set to true.

Steps to reproduce:
1. Create grid with several rows.
2. Set AutoSizeRows property to "true"
3. Run application and move mouse over the rows.
Completed
Last Updated: 27 Nov 2014 18:25 by ADMIN
This property will disable the accessibility information from being sent to Windows narrator and JAWS.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
There is no style applied to the RadTreeView drag&drop indicator.
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: 23 Apr 2014 12:56 by ADMIN
When maximizing child form in MDI container form with Windows8theme applied, the theming of the MDI buttons would be missing.
Completed
Last Updated: 25 Mar 2013 05:32 by ADMIN
1. Create a new project with RadGridView and bind it.
2. Set the DisableHtmlFormatting property for a column to false.
3. Handle the CellFormatting event and use the Text property to change the cell font. For example:

 e.CellElement.Text = "<html><b>AASA:</b><size=15><font='Comic Sans MS'><color=green>qwert qwertwe";

4. Run the project and check the cell font.
Completed
Last Updated: 22 Mar 2013 03:33 by ADMIN
There is no style applied to the property grid item when one sets the error message.
Completed
Last Updated: 06 Mar 2013 02:01 by ADMIN
The help button of RadRibonBar has incorrect back color and border color.

The expand/collapse ribbon bar button has its images reversed. When the ribbon is expanded the arrow points down and when it is collapsed it points up which is the opposite to what it should be.
Completed
Last Updated: 04 Mar 2013 02:34 by ADMIN
The restore button of RadForm has the following inconsistent styles: 

Office2010Silver - The image is identical for the maximize and restore states Office2010Black - The back color of the button is wrong when the form is started maximized.
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: 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
Completed
Last Updated: 13 Feb 2014 13:17 by ADMIN
ADMIN
Created by: Anton
Comments: 0
Category: UI Framework
Type: Bug Report
2
The InitialDelay property of ToolTips does not work

Work Around:

        ToolTip tooltip = new ToolTip();
        tooltip.InitialDelay = 1000;
        tooltip.Hide(this.radListView1);
        this.tooltip.Show(DateTime.Now.ToString(), this.radListView1);
Completed
Last Updated: 25 Jan 2013 08:38 by ADMIN
An image representing row error should be added to the theme
Completed
Last Updated: 24 Jan 2013 03:44 by ADMIN
You cannot apply font changes into the Header of the RadGroupBox at design time. At design time you can apply changes to font of RadGroupBox, but the themes are applying their font changes to RadGroupBoxElement  and override the font changes of RadGroupBox.

Workaround:
this.radGroupBox1.GroupBoxElement.Header.TextPrimitive.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
Completed
Last Updated: 30 Jan 2015 11:45 by ADMIN
Setting the ForeColor of root menu item is not taken into consideration.

WORKAROUND:
((TextPrimitive)radMenuItem1.Layout.TextPanel.Children[0]).ForeColor = Color.Red;
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.
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.
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.