Let's say that we have a RadLabel and want to show Dot style border for it. The Dot, however, appears as thinner Line when we set the DashStyle to Dot.
To reproduce: Open Demo Application, open editors, open Time Picker Exception should occur. Note: The exception occurs if the registry key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\TimeZoneInformation\TimeZoneKeyName is missing from the registries. Workaround: Restore the registry file as per this MSDN article - http://support.microsoft.com/kb/555537
To reproduce: 1. Open DemoApplication => Dock => Tabbed Document example 2. Click Launch Example button 3. Pop up with script error is shown
If you have a RadControl with Anchor Left, Top, Bottom, Right in a ToolWindow, the next time you close and reopen the designer in VS, this RadControl gets a bigger size.
Expose the SupportsGesture property in the GestureInfoHelper class to enable users to enable/disable gesture support manually. Workaround: set the field with Reflection private void DisableGestures() { Type gestureHelperType = typeof(GestureInfoHelper); FieldInfo field = gestureHelperType.GetField("supportsGestures", BindingFlags.NonPublic | BindingFlags.Static); field.SetValue(null,false); }
Workaround: load the themes with ThemeResolutionService: http://www.telerik.com/help/winforms/themes-using-custom-themes.html
To reproduce: On RadGridView's ToolTipTextNeeded event use the following code: void Grid_ToolTipTextNeeded(object sender, ToolTipTextNeededEventArgs e) { e.ToolTipText = "Sample ToolTip Text"; e.ToolTip.IsBalloon = true; } You will see that the Tooltip will be displayed too much below the mouse cursor Workaround: Add offset to the position of the ToolTip so that it is displayed at the cursor's position: void Grid_ToolTipTextNeeded(object sender, ToolTipTextNeededEventArgs e) { e.ToolTipText = "Sample ToolTip Text"; e.ToolTip.IsBalloon = true; e.Offset = new Size(e.Offset.Width, e.Offset.Height -30); }
GridImageCellElement should be able to hide the image that it shows. This should be possible thanks to a property that determines the visibility of the image. Probably, this property should be exposed at the base class LightVisualElement. Resolution: Add new properties DrawImage and DrawBackgroundImage. You can use the following code snippet: void radGridView1_CellFormatting(object sender, CellFormattingEventArgs e) { if (e.CellElement is GridImageCellElement) { e.CellElement.DrawImage = false; } }
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.
It will be nice if there is a property which sets the theme application wide. However, one should still be able to change the theme of a single controls instance by setting its ThemeName property.
Duplicate of: http://feedback.telerik.com/Project/154/Feedback/Details/112597-add-organisational-chart
Telerik winforms demo application "bugtracker" issue: reproduction: 1. drag the "bugs" window to touch the upper middle docking guide icon and without releasing the mouse button drag it further Effect: please observe that the remainder of the "bugs window" will not be refreshed, you can draw with this window The same issue can be also observed in the demo hub: drag > Tabstrip properties demo application and also in the DragDropService demo application.
DECLINED: not an issue. Steps to reproduce: 1. Create a UserControl, drag a RadControl and set its Anchor to Left, Top, Right, Bottom 2. Drop a RadPageView on the main form and create a RadPageViewPage. 3. Place the newly created UserControl on the page and set its Dock to Fill The Control located in the UserControl will exceed the visible page area
Wrapped text in bullet point paragraph is not aligned correctly.
The screentip is not position correctly when the item is on the left part of the screen.
1. Create a new project and add RadLabel. 2. In form constructor apply PositionOffset animation and set its apply delay to 200. 3. Run the project.
To reproduce: Set your theme to Windows8: ThemeResolutionService.ApplicationThemeName = new Windows8Theme().ThemeName; Add a RadTextBox and RadMaskedEditBox: RadTextBox textBox = new RadTextBox { Parent = this, Dock = DockStyle.Top, Text = "TextBox" }; RadMaskedEditBox maskedEditBox = new RadMaskedEditBox { Parent = this, Dock = DockStyle.Top, Text = "MaskedEditBox" }; RadDateTimePicker dateTimePicker = new RadDateTimePicker { Parent = this, Dock = DockStyle.Top, Text = "DateTimePicker" }; You can also set their Enabled property to false prior running the form. Run the form and you will see that their background is black. Workaround: For the RadTextBox, set the BackColor of the RootElement to white: textBox.RootElement.BackColor = Color.White; For the RadMaskedEditBox, set the BackColor of the TextBoxItem to white: maskedEditBox.MaskedEditBoxElement.TextBoxItem.BackColor = Color.White; For the RadDateTimePicker, set the BackColor of the TextBoxItem to white as follows: dateTimePicker.DateTimePickerElement.TextBoxElement.TextBoxItem.BackColor = Color.White;
Resolution: The issue is no longer reproducible under OS Windows 2008 Server