Completed
Last Updated: 25 Apr 2017 11:53 by ADMIN
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.
Completed
Last Updated: 15 Sep 2021 12:20 by ADMIN
Release R3 2021
ADMIN
Created by: Telerik Admin
Comments: 3
Category: UI Framework
Type: Feature Request
1
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
Completed
Last Updated: 09 Sep 2016 14:42 by Alex Dybenko
Created by: Alex Dybenko
Comments: 7
Category: UI Framework
Type: Bug Report
1
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
Completed
Last Updated: 19 Aug 2016 09:20 by ADMIN
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:\\";
}
Unplanned
Last Updated: 27 Jun 2016 11:37 by ADMIN
To reproduce:
- Add RadDropDownListElement to a ribbon group
- Disable then enable the control.
- Additional button border is shown

Workaround:
radDropDownListElement1.Padding = new Padding(0);
Completed
Last Updated: 05 Aug 2016 09:26 by ADMIN
Workaround:
this.commandBarDropDownButton1.ForeColor = Color.White;

Completed
Last Updated: 08 Jun 2016 10:07 by ADMIN
To reproduce:
- Open the Breeze theme.
- Hover the ScrollBar with the mouse - the background is changed and never restored. 
Completed
Last Updated: 15 Jun 2017 11:14 by ADMIN
ADMIN
Created by: Stefan
Comments: 2
Category: UI Framework
Type: Feature Request
4

			
Unplanned
Last Updated: 06 May 2016 13:48 by ADMIN
Completed
Last Updated: 14 Jul 2016 06:26 by ADMIN
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).
 
Completed
Last Updated: 05 Jul 2016 09:41 by ADMIN
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.
Unplanned
Last Updated: 15 Aug 2017 10:08 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: UI Framework
Type: Feature Request
2

			
Completed
Last Updated: 23 Mar 2016 07:02 by JeffSM
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 1
Category: UI Framework
Type: Bug Report
1
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";
Completed
Last Updated: 19 Feb 2016 15:46 by ADMIN
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. 
Completed
Last Updated: 15 Jan 2016 09:19 by ADMIN
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
Completed
Last Updated: 12 Jan 2017 15:25 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: UI Framework
Type: Feature Request
3
Make the RadDataFilter (http://www.telerik.com/products/wpf/datafilter.aspx) available for WinForm.
Completed
Last Updated: 12 Jul 2016 09:53 by ADMIN
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();
Completed
Last Updated: 14 Dec 2015 12:16 by ADMIN
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
Completed
Last Updated: 19 Aug 2020 11:55 by ADMIN
Release R3 2018
Created by: Michael
Comments: 1
Category: UI Framework
Type: Feature Request
1
Add Navigation bar Like the one at the bottom of Outlook 2013 with pop-ups when hovering.
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: UI Framework
Type: Feature Request
5
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.