Completed
Last Updated: 20 Oct 2014 13:54 by ADMIN
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.
Completed
Last Updated: 15 Oct 2014 11:36 by ADMIN
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
Completed
Last Updated: 15 Oct 2014 09:34 by ADMIN
To reproduce: 
1. Open DemoApplication => Dock => Tabbed Document example
2. Click Launch Example button
3. Pop up with script error is shown
Completed
Last Updated: 13 Oct 2014 12:50 by ADMIN
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.
Completed
Last Updated: 13 Oct 2014 11:47 by ADMIN
ADMIN
Created by: Georgi I. Georgiev
Comments: 0
Category: UI Framework
Type: Feature Request
1
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);
        }
Completed
Last Updated: 13 Oct 2014 11:28 by Thomas
Workaround: load the themes with ThemeResolutionService: http://www.telerik.com/help/winforms/themes-using-custom-themes.html
Completed
Last Updated: 13 Oct 2014 08:56 by ADMIN
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);
}
Completed
Last Updated: 10 Oct 2014 15:08 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
3
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
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.

Completed
Last Updated: 01 Oct 2014 13:12 by Sergey
Completed
Last Updated: 01 Oct 2014 11:58 by ADMIN
Completed
Last Updated: 01 Oct 2014 08:03 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Feature Request
1
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.
Declined
Last Updated: 23 Sep 2014 08:12 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI Framework
Type: Feature Request
0
Duplicate of: http://feedback.telerik.com/Project/154/Feedback/Details/112597-add-organisational-chart
Declined
Last Updated: 18 Sep 2014 14:58 by ADMIN
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
Last Updated: 18 Sep 2014 08:29 by ADMIN
ADMIN
Created by: Boryana
Comments: 2
Category: UI Framework
Type: Bug Report
6
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
Completed
Last Updated: 08 Sep 2014 15:15 by ADMIN
Wrapped text in bullet point paragraph is not aligned correctly.
Completed
Last Updated: 03 Sep 2014 08:27 by Jeff
The screentip is not position correctly when the item is on the left part of the screen.
Completed
Last Updated: 18 Aug 2014 10:09 by ADMIN
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.
Completed
Last Updated: 04 Aug 2014 12:32 by Yannick
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;

Declined
Last Updated: 30 Jul 2014 08:07 by ADMIN
Resolution: The issue is no longer reproducible under OS Windows 2008 Server