Completed
Last Updated: 01 Aug 2011 04:25 by ADMIN
FIX. Mnemonics are executed without the control being on focus or ALT key pressed.
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: 04 Oct 2011 04:34 by ADMIN
FIX. Theme: RadMultiColumnComboBox arrow button theme is different than the other drop down controls (ControlDefault)
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 Jun 2013 02:08 by ADMIN
Description: 
When using RadPageView in strip view mode with Office2007Black theme the header and footer have a label containing the text of the current page.

To reproduce:
-Add a pageView
-Add a page
-Change the theme to Office2007Black

Workaround:
((RadPageViewStripElement)radPageView1.ViewElement).Footer.Visibility = ElementVisibility.Collapsed;
((RadPageViewStripElement)radPageView1.ViewElement).Header.Visibility = ElementVisibility.Collapsed;
Unplanned
Last Updated: 30 Mar 2016 13:56 by ADMIN
1. Create a new project with RadChartView.
2. Add a Cartesian chart with a large number of points (10000 for example).
3. Set animations for every point.
4. Run the project - it will crash.
Completed
Last Updated: 15 Apr 2013 05:04 by ADMIN
1. Create a new project and add RadDropDownList.
2. Change the application theme to be Windows 8.
3. Dock the drop down list to bottom of your form.
4. Run the project and maximize the form.
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
ADMIN
Created by: Nikolay
Comments: 1
Category: UI Framework
Type: Feature Request
2
One should be able to define the exact location (in coordinates) for RadScreenTip. Currently, the screentip for the quick access buttons is shown below RadRibbonBar, but it should actually be shown under the buttons.
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: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Feature Request
2
A user should be able to define more RadToolTip settings such as delay, duration and colors.
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: 07 Sep 2012 07:38 by ADMIN
Application button in TelerikMetro and TelerikMetroBlue themes cannot be easily customized.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Feature Request
2
A wizard control will be a nice addition to the RadControls suite
Unplanned
Last Updated: 15 Aug 2017 09:23 by ADMIN
ADMIN
Created by: Jack
Comments: 0
Category: UI Framework
Type: Feature Request
2

Add iPhone style menu like the one available for ASP.Net http://demos.telerik.com/aspnet-ajax/menu/examples/appearance/iphonemenu/defaultcs.aspx#

Completed
Last Updated: 05 Jun 2014 07:08 by ADMIN
Create several sample DocumentWindows in a DocumentTabStrip in RadDock and select the first of them. Now, through the overflow menu, select the last one in the row. It will appear partially and you will not be able to read the text. This should be tested in all tab alignment modes.
Completed
Last Updated: 13 Feb 2014 13:17 by ADMIN
ADMIN
Created by: Anton
Comments: 0
Category: UI Framework
Type: Bug Report
2
The InitialDelay property of ToolTips does not work

Work Around:

        ToolTip tooltip = new ToolTip();
        tooltip.InitialDelay = 1000;
        tooltip.Hide(this.radListView1);
        this.tooltip.Show(DateTime.Now.ToString(), this.radListView1);
Completed
Last Updated: 17 Jun 2015 13:50 by ADMIN
Unplanned
Last Updated: 30 Mar 2016 13:59 by ADMIN
To reproduce:

Add a RadShortcut to a RadMenuItem which is in a context menu:

RadContextMenu m = new RadContextMenu();

RadGridView grid = new RadGridView
{
    Parent = this,
    Dock = DockStyle.Fill
};

RadContextMenuManager mm = new RadContextMenuManager();
mm.SetRadContextMenu(grid, m);

RadMenuItem rtsmNew = new RadMenuItem("New");
rtsmNew.Click += rtsmNew_Click;

RadShortcut rs = new RadShortcut(Keys.None, Keys.F2);
rtsmNew.Shortcuts.Add(rs);
rtsmNew.HintText = rs.GetDisplayText();

m.Items.Add(rtsmNew);

..

private void rtsmNew_Click(object sender, EventArgs e)
{
        new Form().ShowDialog();
}



Workaround:

Check whether the context menu is visible before showing the form:

private void rtsmNew_Click(object sender, EventArgs e)
{
    RadMenuItem item = sender as RadMenuItem;
    if (item.ElementTree.Control.Visible)
    {
        (item.ElementTree.Control as RadContextMenuDropDown).ClosePopup(RadPopupCloseReason.CloseCalled);
        new Form().ShowDialog();
    }
}

Completed
Last Updated: 23 Apr 2013 03:44 by ADMIN
Windows7Theme - RadGridView has incorrect behavior when AutoSizeRows property is set to true.

Steps to reproduce:
1. Create grid with several rows.
2. Set AutoSizeRows property to "true"
3. Run application and move mouse over the rows.
Unplanned
Last Updated: 21 Feb 2018 13:19 by ADMIN
How to reproduce: check the attached project and compare the font size of the two labels. Also when the form is moved from a screen with HDPI to a standard screen with DPI=96 the font does change.