FIX. Mnemonics are executed without the control being on focus or ALT key pressed.
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.
FIX. Theme: RadMultiColumnComboBox arrow button theme is different than the other drop down controls (ControlDefault)
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
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;
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.
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.
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.
Allow drag and drop among the data controls such as RadGridView, RadTreeView, RadListView, RadListControl
A user should be able to define more RadToolTip settings such as delay, duration and colors.
The default styles are listed here: http://www.w3schools.com/css/css_link.asp
Application button in TelerikMetro and TelerikMetroBlue themes cannot be easily customized.
A wizard control will be a nice addition to the RadControls suite
Add iPhone style menu like the one available for ASP.Net http://demos.telerik.com/aspnet-ajax/menu/examples/appearance/iphonemenu/defaultcs.aspx#
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.
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);
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(); } }
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.
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.