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); }
When user enter into a child record in a heiarchy RadGridView Jaws reads DBNull. When user go back, the proper field is read.
FIX. MSAA - TestManager cannot find RadDateTimePicker
To reproduce: Add a RadGridView with some data and group it. Start the application Create a CodedUI project and a new test. The CodedUI Test Builder will apper. Click the arrow button and try to select a child row in the group rows. You will see that the group row can be selected, but not a child.
To reproduce: string filePath = @"D:\Projects\1015954MenuItemHTML\1015954MenuItemHTML\Resources\calendar.png"; StringBuilder sbItem = new StringBuilder(); sbItem.Append("<html><b>aaa<img src=" + filePath + ">"); sbItem.Append("</html>"); RadMenuItem item = new RadMenuItem(); item.Text = sbItem.ToString(); this.radMenuItem1.Items.Add(item); Workaround: use resource file: string filePath = @"res:_1015954MenuItemHTML.Resources.calendar.png";
To reproduce: 1. Drag and drop RadCheckBox and RadRadioButton on the form 2. Set the Checked/IsChecked property to true. this.radCheckBox2.Checked = true; this.radRadioButton2.IsChecked = true; 3. Apply the Office2013Light theme 4. On button click set the Enabled property to false. The ForeColor is different when disable checked item and unchecked item(see attached image - RadCheckBox_Disable_Checked.png). Workaround: Apply custom StateManager of RadCheckBox/RadRadioButton. In the attachments can be found sample demo with all necessary modifications.
Switch button (On/Off) similar to the switch button that can be found on most smartphones nowadays. This button should have a caption and it will be nice if it supports three states.
To reproduce: 1. Install Telerik UI for WinForms Q3 2015 SP1 or Q1 2016 trial version 2. Open Demo Application and navigate to RichTextEditor examples 3. Click on tile First Look and you will see the exception Workaround: Open the solution RichTextEditor from folder Examples. The location where can be found is: C:\Program Files\Telerik\UI for WinForms [Version]\Examples\RichTextEditor
How to reproduce: Add a RadDropDownListElement to a RadRibbonBar and set its ToolTipText property. The tool tip is not displayed because the hover event is consumed by a child element having an empty ToolTipText Workaround: Handle the ToolTipTextNeeded event
Currently there is no such component in RadControls for WinForms Resolution: In Q2 2014 we introduced Spread Processing which use the RadSpreadProcessing library. You can refer to our help documentation for more information. Here the link http://www.telerik.com/help/winforms/spreadprocessing-overview.html
Let's have two controls - RadLabel and RadCheckBox and a form, anchored to Bottom, Right. Show a form containing these controls in maximized mode and you will notice that the controls' location is not correct.
FIX. RadRibbonForm - exception when loading icon in design time "Requested range extends past the end of the array."
ApplicationButton and QuickStartToolbar layout do not look good when user changed the theme in runtime. Issue can be reproduced with Office2010Silver, Deser, HighContrastBlack and Windows7 themes. Workaround: call recursively the UpdateLayout method for all RadControls in the form: ThemeResolutionService.ApplicationThemeName = item.Text; this.RefreshAll(); m_strThemeName = item.Text; SaveThemeName(); ... } private void RefreshAll() { foreach(Control control in this.Controls) { RefreshAllControls(control); } } void RefreshAllControls(Control ctrl) { foreach (Control control in ctrl.Controls) { RadControl radControl = control as RadControl; if (radControl != null) { radControl.RootElement.InvalidateMeasure(true); radControl.RootElement.UpdateLayout(); } RefreshAllControls(control); } }
Description: Control wich allows to design a flow chart. Where every node could have a different image and assume properties of custom objects. Same thing for every link between nodes. http://www.telerik.com/help/wpf/raddiagram-overview.html
- It could have some doctors as resources with different working hours/days - Ability of the patients to add appointments for the available hours