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.
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.
how to add like dislike button column for each row in radgrid
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
Workaround - set the Visible property of the needed pages to true
Allow drag and drop among the data controls such as RadGridView, RadTreeView, RadListView, RadListControl
Make the RadDataFilter (http://www.telerik.com/products/wpf/datafilter.aspx) available for WinForm.
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.
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.
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.
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.
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.
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.
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.
Add the ability to have multiple columns in a TreeView
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!
The default styles are listed here: http://www.w3schools.com/css/css_link.asp
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
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");