Completed
Last Updated: 05 Jun 2014 07:08 by Svetlin
Created by: Svetlin
Comments: 0
Category: UI Framework
Type: Feature Request
3
If you define an html text (ex. <html><strong>0<strong><br><strong>0<strong><html>) and align it at center or right, the second line is not vertically aligned with the first one.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
1
If you try to load a predefined theme in your project and run the project without a debugger, you may get a missing resource exception. The solution to this issue is:
Assembly lAssembly = Assembly.GetAssembly(typeof(Telerik.WinControls.Themes.Office2010Theme));   
Telerik.WinControls.ThemeResolutionService.LoadPackageResource(lAssembly, "Telerik.WinControls.Themes.Office2010.tssp");
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
1
If you set the GenerateMember of an element to false, it generally removes 'this' from the serialized code concerning the element. However, in the cases where we have a serialized cast in the designer, the word 'this' remains. Since the element is not a member of the form/user control, we get a compile error.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
1
TextAlign property at RadTextBoxItem is not serialized at design-time.
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.
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 ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
1
When you place several editor instances in a FlowLayoutPanel, for example RadTextBox, RadComboBox, RadDateTimePicker and set their Width to 100, this setting is lost when you run the project.
Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
1
When you try to set a value to the ToolTipText property of a RadItem (let's say RadButtonElement), this setting is not serialized in the designer.
Declined
Last Updated: 05 Jun 2014 07:08 by ADMIN
Project Upgrade Utility tries to write in project files that do not contain any Telerik references. However, only the files that contain Telerik references should be modified and saved.
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 Jesse Dyck
ADMIN
Created by: Nikolay
Comments: 1
Category: UI Framework
Type: Bug Report
1
When the RadTextBox.Anchor is set to Bottom, Left, Right (and the AutoSize property is true), RadTextBox.Location is set to a wrong value when the form loads. This is a general RadControls issue.
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: 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: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: 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: 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: 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
1
Currently, if one wants to set the theme of his/her controls programmatically, he/she has to set a string value. However, the string value that has to be set is different from the class name of the theme component, so the user does not know what to set. A property that returns the ThemeName string should be implemented in each of the theme components.