Completed
Last Updated: 23 Apr 2012 13:09 by Jesse Dyck
The settings from the dialog opened by the Print button on the RadPrintPreviewDialog are not taken into consideration.
Completed
Last Updated: 16 May 2018 10:34 by ADMIN
ADMIN
Created by: Stefan
Comments: 13
Category: UI Framework
Type: Feature Request
13
This request is for control similar to RadImageEditor in ASP.NET AJAX suite: http://demos.telerik.com/aspnet-ajax/imageeditor/examples/overview/defaultcs.aspx
Completed
Last Updated: 13 Mar 2012 10:08 by ADMIN
FIX. RadRibbonBar - changing the themes between Office2007Silver, Office2007Black and ControlDefault, causes invalid group caption ForeColor
Completed
Last Updated: 22 Oct 2014 06:52 by ADMIN
To reproduce: 
1. Drag and drop RadMenu. Add RadMenuButtonItem
2. Set the TextImageRelation and you will see that is not apply. The TextImageRelation property of the button item does not set the TextImageRelation of the button element
Completed
Last Updated: 29 Feb 2012 07:06 by ADMIN
IMPROVE - FilterPredicate should allow passing a parameter as argument to the predicate method
implemented new generic Find<> and FindNodes<>, support callbacks amd lamba expression:
public TreeViewSelection()
{
InitializeComponent();
treeView.Dock = DockStyle.Fill;
treeView.Parent = this.panel1;
treeView.MultiSelect = true;
treeView.Nodes.Add("1");
treeView.Nodes.Add("2");
treeView.Nodes.Add("2");
treeView.Nodes.Add("2");
treeView.Nodes[0].Nodes.Add("11");
treeView.Nodes[0].Nodes.Add("12");
treeView.Nodes[0].Nodes.Add("13");
RadTreeNode node = this.treeView.Find<string>(FindName, "11");
node = this.treeView.Find<string>((n, x) => n.Name == x, "12");
}
private bool FindName(RadTreeNode node, string name)
{
if (node.Text == name)
{
return true;
}
return false;
}
Unplanned
Last Updated: 30 Mar 2016 13:55 by ADMIN
I have a somewhat complex datasource with nested classes and collections of classes (called ReportConfiguration in my attached sample). I've created a sample app that illustrates the error when I try to databind using telerik controls; I get a runtime error that it cannot find one of the nested classes. Using standard .NET controls (FormMS), I do not get this error.
Completed
Last Updated: 13 Feb 2012 05:13 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI Framework
Type: Bug Report
0
1. Create application with MDI
2. Add menu to the container form
3. Add a shortcut and on shortcut click open a new child form
4. Run the project and click the shortcut several times
Completed
Last Updated: 18 May 2017 05:52 by ADMIN
To reproduce: 
- Associate a tree to the bread crumb
- Set the control size to 0,0
- Auto size = true 
- Select a node from the tree -> the bread crumb size is not increased, thus it remains invisible.
Completed
Last Updated: 13 Feb 2014 13:21 by ADMIN
ADMIN
Created by: Ivan Petrov
Comments: 0
Category: UI Framework
Type: Feature Request
13
A theme with the same look and feel as the standard windows controls.

RESOLUTION: Consider and Windows7 and Windows8 themes.
Completed
Last Updated: 24 Jan 2012 04:29 by ADMIN
ADMIN
Created by: Julian Benkov
Comments: 0
Category: UI Framework
Type: Bug Report
0
The RadElement Click event is fired also when the validation is not complete (valid) in focused control on the Form. The event must be suspended in this situation like RadButton Click event.
Completed
Last Updated: 16 Jan 2012 09:00 by ADMIN
FIX. RadMultiColunmComboBox editable area should look like RadDropDownList editable area
Declined
Last Updated: 14 Nov 2017 09:44 by ADMIN
ADMIN
Created by: Stefan
Comments: 3
Category: UI Framework
Type: Feature Request
13
ADD. New control which allows the users to play videos with different formats
Completed
Last Updated: 19 Oct 2015 08:31 by ADMIN
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
Completed
Last Updated: 13 Dec 2011 09:19 by ADMIN
FIX. TPF - while validating a control, it is possible to click RadTreeView, RadGridView, etc, while it is not possible to click standard controls. Additionally, when the RadTreeView control is clicked, its events are getting fired too.
Completed
Last Updated: 27 Dec 2016 12:40 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
2
Let's say that you have a ShapedForm in VS. You navigate to its Shape property and try to create a custom shape through the Shape Editor. However, at the end the shape that you have created will not be applied correctly to the form.
Declined
Last Updated: 24 Jul 2014 07:32 by ADMIN
ADMIN
Created by: Nikolay
Comments: 1
Category: UI Framework
Type: Bug Report
1
The CustomShape component is missing from the ToolBox
Declined
Last Updated: 01 Oct 2014 15:16 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: UI Framework
Type: Feature Request
3
DECLINED: RadListView supports checked items - to enable this mode set the ShowCheckBoxes property to true.

This request concerns new control - checked list - which will have the same functionality as RadListControl with the addition of a check box in each item. Alternatively, this may be a mode of the existing control.

Unplanned
Last Updated: 30 Mar 2016 13:54 by ADMIN
Tool-tips are not visible when they cannot find its parent control form.
Completed
Last Updated: 18 Feb 2015 12:57 by Jesse Dyck
Create an MDI application. When you maximize an MDI Child form you will see that the restore button has a maximize icon instead of restore one. This is true for the following themes:
ControlDefault, Office2010Blue, Office2010Black