At the moment one needs to iterate all controls and set the EnableCodedUITests property individually. It would be nice if there is a way this to be done only once affecting all controls.
A free configurable KANBAN-Board. - Add N columns. - Add tasks to column. - Move task by drag and drop between columns. - Task with header, image, link (or click event) - Task as expandable container
After ILMerge buttons on printpreview dialog are not painted. Run attached InfoCubeM.exe (merged InfoCube.exe), press radbutton, buttons appears as on attached capture. InfoCube.ilproj and ILMerge-cmd.txt also in attached zip
How to reproduce: public Form1() { InitializeComponent(); } private void radButton1_Click(object sender, EventArgs e) { this.radLabel1.Text = "<html><u>D:\\</u>"; } Workaround: public Form1() { InitializeComponent(); } private void radButton1_Click(object sender, EventArgs e) { this.radLabel1.Text = "<html><u>D:\\"; }
To reproduce: - Add RadDropDownListElement to a ribbon group - Disable then enable the control. - Additional button border is shown Workaround: radDropDownListElement1.Padding = new Padding(0);
Workaround: this.commandBarDropDownButton1.ForeColor = Color.White;
To reproduce: - Open the Breeze theme. - Hover the ScrollBar with the mouse - the background is changed and never restored.
When the default .NET combo box is tested with the Coded UI there is an AccessViolationException. This can be reproduced with the attached project (run test method 2).
To reproduce: - Run the attached project and show the popup in the "mc" column. The custom editor contains 3 textboxes and despite that the SizingType is set to Auto the textboxes are having smaller than their desired height. Workaround: - Set the textbox Margin instead of setting the CellPaddingProperty.
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.
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
Make the RadDataFilter (http://www.telerik.com/products/wpf/datafilter.aspx) available for WinForm.
To reproduce: var control =new RadDateTimePickerElement(); ComponentXmlSerializer serializer = new RadTimePickerElement(); StringBuilder xml = new StringBuilder(); StringWriter writer = new StringWriter(xml); XmlTextWriter xmlWriter = new XmlTextWriter(writer); xmlWriter.WriteStartElement(control.GetType().FullName); serializer.WriteObjectElement(xmlWriter, control); xmlWriter.WriteEndElement();
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
Add Navigation bar Like the one at the bottom of Outlook 2013 with pop-ups when hovering.
A pipeline control that have multi stage. Can dynamically add button (stage) to the stage list. Each stage can have two caption (Text) properties to display stage name and item in stage. Each stage also have onclick trigger.