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: 06 Aug 2012 06:36 by ADMIN
Steps to reproduce:

1. Add a label to a form
2. Open the form designer and set the text of the label to something like: 
<html>send mail<a href='mailto:some@mail.com'><b>some@mail.com</b></a>

Open the designer surface for the form and you will get an exception.
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: 29 Jun 2013 01:36 by ADMIN
Workaround:

DirectCast(radPageView1.ViewElement, RadPageViewStripElement).Footer.Visibility = ElementVisibility.Collapsed
DirectCast(radPageView1.ViewElement, RadPageViewStripElement).Header.Visibility = ElementVisibility.Collapsed
Completed
Last Updated: 26 Feb 2014 14:22 by ADMIN
ADMIN
Created by: Dobry Zranchev
Comments: 0
Category: UI Framework
Type: Feature Request
0
Add PasswordChar property to RadTextBoxElement
Completed
Last Updated: 01 Mar 2010 09:49 by ADMIN
ADMIN
Created by: Dobry Zranchev
Comments: 0
Category: UI Framework
Type: Bug Report
0
When the user disables RadRibbonBarGroup and there is a RadTextBoxElement in it the textbox part of the RadTextBoxElement is not disabled.
Completed
Last Updated: 20 Dec 2010 02:23 by Jesse Dyck
Created by: Svetlin
Comments: 1
Category: UI Framework
Type: Bug Report
0
When the text of main label of RadOffice2007ScreenTipElement is html text, the label is not wrapped. It's cut by the ScreenTip.
Completed
Last Updated: 26 Nov 2010 03:56 by Svetlin
Created by: Svetlin
Comments: 0
Category: UI Framework
Type: Bug Report
0
ToolTip should be located close to the mouse cursor
Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Created by: Svetlin
Comments: 0
Category: UI Framework
Type: Feature Request
0
Refactoring LightVisualElement text painting to use TextRenderingHint property.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
0
When RadScreenTip is shown for a control which resides in a non-active form, the form of RadScreenTip shows a button in the taskbar.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
0
Host a Panel in RadHostItem and set the BackColor of the Panel. You will notice that the color set is not applied.
NOTE:   These properties should be set to the RadHostItem
//Synch inheritable properties
this.hostedControl.ForeColor = this.ForeColor;
this.hostedControl.BackColor = this.BackColor;
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
0
Set Color.Orange to the border of the RadDropDownList when it is in ContainsFocus state. You will notice that the border of the control becomes orange event if it is not focused.
Declined
Last Updated: 28 Oct 2014 10:02 by ADMIN
There is an issue in RadCarousel which can be reproduced by running the 'hi-res' code library article.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
0
When RadComboBox is dynamically filled with items, the layout does not give a valid size to the items, since the dropdown is not initially opened.

The current workaround is to call the UpdateLayout method:
this.radComboBox1.ComboBoxElement.ComboPopupForm.ListBox.UpdateLayout();
Completed
Last Updated: 05 Jun 2014 07:08 by Jesse Dyck
ADMIN
Created by: Nikolay
Comments: 1
Category: UI Framework
Type: Bug Report
0
RadScreeTip has a wrong size the first time it is displayed. This size cannot be changed.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
0
Project Update Utility should be able to update vbproj files as well.
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.
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: 05 Jun 2014 07:07 by ADMIN
RadListSource should discover properties from its DataSoucre via ITypedList if the DataSource implements this interface.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
PrintSettings dialog crash if Printer's SourceName is empty.
Workarround: Enumerate printers and set a name for empty Source Names.

class MyPrintSettingDialog : PrintSettingsDialog
{
    public MyPrintSettingDialog(RadPrintDocument document):base(document)
    { }
    public MyPrintSettingDialog():base()
    { }
 
    protected override void LoadSettings()
    {
        PrinterSettings.PaperSourceCollection paperSourceCollection = this.PrintDocument.PrinterSettings.PaperSources;
        int index = 0;
        while (index < paperSourceCollection.Count)
        {
            if (string.IsNullOrEmpty(paperSourceCollection[index].SourceName) || paperSourceCollection[index].SourceName == "-1")
            {
                paperSourceCollection[index].SourceName = "NONEMPTY NAME";                    
            }
             
            index++;
        }
 
        base.LoadSettings();
    }
}