When grouping is applied, the grouping headers and all other rows are read as row 0 by JAWS . Group headers are also read as DBNULL. This issue also affects the filtering rows and summary rows.
If set ClickMode to Press after that the buttons stay howered Steps to reproduce: Place a RibbonBar with one RadButtonGroup with few ButtonElements Set the PressMode in Form constructor. public Form1() { foreach (RadButtonElement item in radRibbonBarGroup1.Items) { item.ClickMode = Telerik.WinControls.ClickMode.Press; } } Workaround: void item_Click(object sender, EventArgs e) { ((RadButtonElement)sender).SetValue(RadButtonElement.IsMouseDownProperty, false); }
Html-like rendering should support base-64 encoded images
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.
RadControls should implement the MS Active Accessibility rules.
It will be nice if there is a property which sets the theme application wide. However, one should still be able to change the theme of a single controls instance by setting its ThemeName property.
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.
The CustomShape component is missing from the ToolBox
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.
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.
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.
TextAlign property at RadTextBoxItem is not serialized at design-time.
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.
Create a theme using the old Visual Style Builder and load this theme in your project using RadThemeManager. Let's say that this theme is for a panel. Set the ThemeName of the panel to your custom theme. Then, close the designer, clean the project and close Visual Studio. Now reopen VS and the designer - you will notice that the theme is not applied at design-time until you click on RadThemeManager or perform another action in the designer.
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");
FIX. Color blending of the active theme is not applied to the controls created after the blending
Add image editor. For the time being one can use the WPF component with ElementHost: http://www.telerik.com/help/wpf/radimageeditor-overview.html
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.
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.