Completed
Last Updated: 19 Mar 2015 14:09 by Felix
When you have set the Windows task bar to auto-hide and you maximize an RadRibbonWindow, you are not allowed to visualize the task bar on top of the RadRibbonWindow.

Available in LIB version: 2015.1.2303
Completed
Last Updated: 17 May 2016 06:49 by Bill
ADMIN
Created by: Telerik Admin
Comments: 2
Category: RibbonView
Type: Bug Report
11
When the Taskbar is auto-hidden, if the RibbonWindow is maximized, the task bar cannot be displayed.
Completed
Last Updated: 11 Jun 2019 12:40 by ADMIN
Release R2 2019 SP1
We have a RadRibbonWindow.
When it is run on Windows XP (or on Windows 7, "Windows Classic" theme) and the DPI settings are high (above 170 %), the standard window buttons (Minimize, Restore and Close) are not displayed properly (they are cut). Also there is too much space between them.
Completed
Last Updated: 02 Apr 2014 14:00 by ADMIN
Title bar (including the Contextual tab header) goes over the Window (MinMaxClose) Buttons
Completed
Last Updated: 20 Jul 2021 09:42 by ADMIN
Output error in VS:

System.Windows.Data Error: 4 : Cannot find source for binding with reference 'RelativeSource FindAncestor, AncestorType='Telerik.Windows.Controls.RadRibbonView', AncestorLevel='1''. BindingExpression:Path=IsHostedInRibbonWindow; DataItem=null; target element is 'WindowTitle' (Name='WindowTitle'); target property is 'NoTarget' (type 'Object')
Completed
Last Updated: 03 Apr 2014 06:47 by ADMIN
When ribbon is placed on two monitors the minimized popup is misplaced.
Completed
Last Updated: 02 Apr 2014 11:06 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Bug Report
5
The Title of the RadRibbonWindow is not diplayed unless there is a RadRibbonView in the window.
Completed
Last Updated: 03 Apr 2014 06:47 by ADMIN
You can not click the ColorPicker when it is inside a RadRibbonSplitButton.
Completed
Last Updated: 11 Jul 2023 11:05 by ADMIN
Release R2 2023
Currently, when the users hover around the window's border, the resizing border is 1 pixel wide. Create the border wider (higher at top and bottom borders).
 
Workaround: Apply right margin to the content inside the window.
Completed
Last Updated: 04 Feb 2016 13:34 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Bug Report
4
The BackstageItems are not rendered as expected when the RadRibbonView is hosted in apanel with flow direction set to right to left.
Completed
Last Updated: 31 Jul 2014 12:22 by ADMIN
TreeView or DataGrid, or COmbobox is placed in a dropcontent of a RibbonDropDownButton. Item is selected programmatically before the dropdown is loaded. This leads to null reference exception.
Completed
Last Updated: 02 Apr 2014 11:41 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Bug Report
3
The title of the RadRibbonWindow can't be trimmed when resizing the window. Even the window's buttons are overlapped
Completed
Last Updated: 14 May 2016 06:30 by ADMIN
Completed
Last Updated: 08 Aug 2016 14:11 by John Hodgson
Completed
Last Updated: 28 Apr 2021 13:16 by ADMIN
Release R2 2021

The content of RadBackstageItem is not stretched within the available area in the content area of the RadRibbonBackstage control. There is a gap between the title bar of the RadRibbonView control and the top border of the content area.

This reproduces with the Material theme, but it is possible to appear also in other themes.

To work this around, you can extract the ControlTemplate of RadRibbonBackstage and re-order the layout in order to stretch the content in all the available space. Check the attached project.

Completed
Last Updated: 08 Sep 2022 09:57 by ADMIN
Release R3 2022
This is reproducible only if the application that holds RadRibbonView is started on another machine and you are connected to it through Remote Desktop Connection. When the keytips are enabled and you click in the main machine, then click inside the remote desktop window, the keytips are displayed.
Completed
Last Updated: 08 Jun 2021 10:18 by ADMIN
Release LIB 2021.2.608 (08 Jun 2021)

This reproduces only if RadRibbonWindow is used with the default WPF Window's theme, instead of the Telerik's theme. Also, this reproduces only in the themes after Expression_Dark (starting from Windows8). You can find a list of the Telerik themes ordered chronologically in the help documentation.

If the RadRibbonWindow is maximized on the second (right) monitor and you click the application menu button to open the ApplicationMenu, the menu displays on the first (left) monitor.

To work this around enable the Telerik's RadRibbonWindow theming by setting the IsWindowsThemeEnabled static property to False.

static MainWindow()
{
    IsWindowsThemeEnabled = false;
}
Or alternatively, use the ribbon backstage control instead of the application menu.

 

Completed
Last Updated: 01 Oct 2021 07:16 by ADMIN
Release LIB 2021.3.1004 (4 Oct 2021)
The content of RadRibbonWindow is positioned wrongly when the Windows taskbar auto-hiding is enabled. This happens on Windows 10.
Completed
Last Updated: 15 Jun 2020 08:55 by ADMIN
Release LIB 2020.2.6.08

Setting the KeyTipService.AltAccessText attached property on a RadRibbonGroup element should display a keytip on the dialog launcher of the group, when the keytips are activated.

Currently, if the group is collapsed, you can expand it using its AccessText. However, in this case the keytip of the dialog launcher is not displayed.

To work this around, subscribe to the Loaded event of RadRibbonGroup and set the KeyyTipService.AccessText property directly to the RadRibbonButton representing the dialog launcher.

private void RadRibbonGroup_Loaded(object sender, RoutedEventArgs e)
{
	var group = (RadRibbonGroup)sender;
	var button = group.ChildrenOfType<RadRibbonButton>().FirstOrDefault(x => x.Name == "DialogLauncher");
	if (button != null)
	{
		KeyTipService.SetAccessText(button, "D");
	}
}

Completed
Last Updated: 13 Mar 2017 09:51 by ADMIN
In scenarios with more than one monitor when the RibbonWindow is run on 64bit process and e.g. using VBE7.dll, the WM_NCHITTEST message, which is sent to the window in order to determine what part of the window corresponds to a particular screen coordinate, could provide lParam with value which overflows Int32.


Available in LIB version: 2017.1.313
1 2 3 4 5 6