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: 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.
Declined
Last Updated: 05 Apr 2017 12:27 by ADMIN
Created by: Rajesh
Comments: 1
Category: UI Framework
Type: Feature Request
0
how to add like dislike button column for each row in radgrid
Completed
Last Updated: 24 Mar 2017 14:47 by ADMIN
To reproduce:
- Set ShowRootLines to true
- Apply one of the following themes: Aqua, Office2007, TelerikMetro, VS2012

Workaround:
- Open the theme in visual style builder
- Expand the RadTreeView in the ControlStructureWindow
- Select TreeNodeExpandItem and expand it in the Elements window
- Navigate to the PossitionOffset property and set its width to 1
Completed
Last Updated: 16 Feb 2017 17:59 by erwin
Workaround - set the Visible property of the needed pages to true
Completed
Last Updated: 13 Feb 2017 11:14 by ADMIN
Allow drag and drop among the data controls such as RadGridView, RadTreeView, RadListView, RadListControl
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.
Declined
Last Updated: 10 Jan 2017 10:12 by ADMIN
Created by: Chuck
Comments: 1
Category: UI Framework
Type: Feature Request
0

			
Completed
Last Updated: 04 Jan 2017 07:22 by ADMIN
ADMIN
Created by: Alexander
Comments: 0
Category: UI Framework
Type: Bug Report
0
The issue can be reproduced following the scenario:
1. Create theme for RadLabel and define its Image in the theme. The images should be different for the different element states of the label.
2. Use a RadThemeManager to apply the theme to the control in design time. The Image property will be serialized, assigned to the image of the default element state. Setting the local value of the property in this case prevents applying the images of the other states, defined in the theme.
Completed
Last Updated: 03 Jan 2017 07:24 by ADMIN
To reproduce:
- Try running the tool on a 32-bit operating system.
- The tool reports that the correct version is not installed.
 
Workaround:
Manually create the registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\NET Framework Setup\NDP\v4\Full

The cre4ate the following DWORD 32-bitValue:
 Release 60636

This is shown in the attched iamge as well. 

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.
Completed
Last Updated: 27 Dec 2016 11:56 by ADMIN
Example: Add a single tile in RadPanorama, set it with RoundRectShape(12) and set an image with size equal to the size of the tile. The image will be drawn outside the bounds of the shape.
Completed
Last Updated: 20 Dec 2016 06:48 by ADMIN
RadButtonElement shows its border when it is in a button group where ShowBorder is false. It seems like there is an issue in the ForceReapplyStyle method.
Completed
Last Updated: 19 Dec 2016 06:56 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI Framework
Type: Bug Report
3
There is a specific case where command bindings stop working. Let's say we have a RadGridView and a binding which adds a new row in this RadGridView. If we open the context menu of RadGridView, then press ESC to close it and then execute the command binding, this binding stops working if we try to execute it further.
Completed
Last Updated: 07 Dec 2016 14:03 by ADMIN
Steps to reproduce: 
1. Open Demo Application 
2. Navigate to GridView >> Custom painting example 
3. Open themes and choose Office2013Light and a message box is shown. 
Declined
Last Updated: 02 Dec 2016 11:57 by ADMIN
Created by: neil
Comments: 1
Category: UI Framework
Type: Feature Request
0
Add the ability to have multiple columns in a TreeView
Declined
Last Updated: 21 Nov 2016 07:11 by ADMIN
Created by: BlueStack
Comments: 2
Category: UI Framework
Type: Feature Request
1
Our customers are located in Russian and CIS. So, the most common language is Russian. Telerik WinForms controls doesn't provide official Russian localization. Yeah, we can translate it, but it's too hard to contact with translators and support them in translation questions. And, of course, it takes money resources. We'd rather pay more monay for Telerik WinForms UI with official Russian localization than we spend money to translators.

Thanks!
Unplanned
Last Updated: 17 Oct 2016 05:47 by ADMIN
ADMIN
Created by: Dimitar
Comments: 0
Category: UI Framework
Type: Feature Request
2
The default styles are listed here: http://www.w3schools.com/css/css_link.asp
Completed
Last Updated: 05 Oct 2016 13:27 by ADMIN
ADMIN
Created by: Stefan
Comments: 2
Category: UI Framework
Type: Bug Report
1
When a child form is opened in a new thread, and tooltips are used in the child form, cross thread exception is thrown, due to the fact that RadToolTip internally uses a static control instance.

 public class ManagedThread
    {
        private Thread _thread;
        public ManagedThread()
        {
            _thread = new Thread(new ThreadStart(OpenNew));
        }

        private void OpenNew()
        {
            Child form = new Child();
            form.Text = "my text";
            form.ShowDialog();
        }
}

The second time the child form is opened, when you try to show tooltips of a control e.g. RadDropDownList with ToolTipTextNeeded, the exception is thrown.

Workaround: use screentips instead of tooltips: http://docs.telerik.com/devtools/winforms/treeview/how-to/assign-radscreentip-to-nodes
Completed
Last Updated: 04 Oct 2016 06:57 by ADMIN
The format should be set like this instead of using the custom format:

radDateTimePicker1.Culture = new System.Globalization.CultureInfo("bg-BG");

var behaviour = radDateTimePicker1.DateTimePickerElement.GetCurrentBehavior() as RadDateTimePickerCalendar;
behaviour.TimePicker.Culture = new System.Globalization.CultureInfo("bg-BG");