Completed
Last Updated: 09 Feb 2015 13:38 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 0
Category: RibbonView
Type: Feature Request
0
The selected tab content ScrollBar appears when there are RibbonGroups which size can be changed to smaller size.

Available in LIB version: 2014.3.1409
Declined
Last Updated: 30 Jan 2015 11:55 by ADMIN
RotateTransform is not applied correctly on elements defined in the Content of the window.

Reason for declining: The issue appears to be in the framework as it is not calculating correctly the transformation and instead of rendering the transformation it apply a Clipping to the parent element. You could solve the issue by two different approaches: you could either set the UseLayoutRounding of the Window to false, or set the Width/Height properties of you element to be Integer numbers, not double (10.782). You can reproduce the same behavior with the MS Window simply set its UseLayoutRounding to true. You can find attached project reproducing the issue only with MS controls.
Completed
Last Updated: 01 Apr 2015 11:23 by ADMIN
A binding error occur in the output on Windows7 without aero.
(System.Windows.Data Information: 10 : Cannot retrieve value using the binding and no valid fallback value exists; using default instead. BindingExpression:Path=IsActive; DataItem=null; target element is 'Button' (Name='PART_MinimizeWindowButton'); target property is 'NoTarget' (type 'Object'))

Available in LIB version: 2015.1.0604
Completed
Last Updated: 27 Jul 2015 14:18 by ADMIN
If a contextual tab is collapsed when the contextual group is activated and then its visibility is set to Visible, the tab is not shown (only if you reopen the group).

Available in LIB version: 2015.2.803
Completed
Last Updated: 19 Mar 2015 14:09 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: RibbonView
Type: Bug Report
0
When the Taskbar is auto-hidden, if the RibbonWindow is maximized, the taskbar cannot be displayed.

Available in LIB version: 2015.1.2303
Completed
Last Updated: 26 Mar 2015 15:57 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 0
Category: RibbonView
Type: Feature Request
0
WindowChrome is not updated after dynamic theme change on Windows7(from Aero to NonAero)

Will be available in Q1 2015 SP.
Completed
Last Updated: 17 Apr 2015 12:16 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 0
Category: RibbonView
Type: Bug Report
0
If you set those properties they are ignored by the control. You can resize the window beyond the set restrictions.

Available in LIB version: 2015.1.2004
Completed
Last Updated: 17 Apr 2015 12:16 by ADMIN
Completed
Last Updated: 08 Aug 2016 14:10 by Sujata
The RibbonWindow buttons are not displayed when ShowInTaskbar is set to false and is minimized state.
Completed
Last Updated: 06 Jun 2017 13:33 by Gord
Declined
Last Updated: 27 Jul 2015 14:14 by Philip
Created by: Philip
Comments: 0
Category: RibbonView
Type: Feature Request
0
PLEASE can you remove the popups that appear in the Blend and Visual Studio designers when working on the RadRibbonView.  These popups popup all the time, they cover the code, they cover the design workspace, in VS the switch from the code window to the designer window as soon as you click on portions of the code with no warning, then you can't get back to the code screen until you click away from the RibbonView.  Its 'so' annoying - I've been editing in Notepad++ today because the RibbonView designer functionality makes Blend./VS is unusable.  Also, the popups don't provide anything that you can't do in either code or the Blend interface.  Wasted so much time today with this RibbonView.

Declined: The RadRibbonView control exposes a design time logic to make our clients that uses only the designer to populate and operate with the RadRibbonView control. If you want to disable that functionality you need to simply delete the following binaries from you design folder, which is located in the same directory as the Telerik binaries:
- Telerik.Windows.Controls.RibbonView.VisualStudio.Design
- Telerik.Windows.Controls.RibbonView.VisualStudio.Design.4.0
- Telerik.Windows.Controls.RibbonView.Expression.Design
- Telerik.Windows.Controls.RibbonView.Design.5.0
- Telerik.Windows.Controls.RibbonView.Design.4.0
Doing so you will remove the design time functionality of the RadRibbonView in all VisualStudios/Blend.
Completed
Last Updated: 17 Sep 2016 09:59 by ADMIN
ADMIN
Created by: Peshito
Comments: 0
Category: RibbonView
Type: Bug Report
0
Opening the Backstage on RibbonView's Loaded event workarounds the issue.

Available in LIB version: 2016.3.919
Completed
Last Updated: 08 Jan 2016 12:08 by ADMIN
Items in RadCollapsible are not rendered correctly on Windows7 with DPI 150% and UseLayoutRounding set to true and ItemSpacing is set to more than 0.

Available in LIB version: 2015.3.1215
Unplanned
Last Updated: 03 Jan 2017 21:12 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: RibbonView
Type: Feature Request
0
 Improve the performance of the keytips functionality.
Unplanned
Last Updated: 03 Jan 2017 21:11 by ADMIN
Completed
Last Updated: 25 Jul 2016 06:57 by ADMIN
The ApplicationMenu is not closed when a button's keytip is activated. 


Available in LIB version: 2016.2.725
Declined
Last Updated: 27 May 2016 10:18 by Michael
Created by: Michael
Comments: 0
Category: RibbonView
Type: Feature Request
0
Office 2016 has a search field in the ribbon for quick access to commands that may be hard to find.
Can such functionality be added to the telerik ribbon ?

Declined: We consider this functionality to be an Application logic as the information that need to be displayed is based on the UI(the defined options/buttons in the RibbonView). Also the keywords for activating a given option may be different based on client preferences or language. This functionality can easily be achieved with a custom Style for the RadRibbonTab, containing only the control which you will use for the search (RadAutoCompleteTextBlock/RadWatermarkTextBox e.t.).
Unplanned
Last Updated: 04 Jan 2017 07:26 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: RibbonView
Type: Bug Report
0

			
Completed
Last Updated: 24 Jan 2020 13:57 by ADMIN
Release LIB 2020.1.127
Workaround:
In the Loaded event of the RibbonWindow, use the Telerik.Windows.Controls.RibbonView.Shell.WindowChrome class to get the current window and set its ResizeBorderThickness property to 0. 

public MainWindow()
{
    InitializeComponent();
    this.Loaded += MainWindow_Loaded;
}
 
void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
    Telerik.Windows.Controls.RibbonView.Shell.WindowChrome chome = Telerik.Windows.Controls.RibbonView.Shell.WindowChrome.GetWindowChrome(this);
    chome.ResizeBorderThickness = new Thickness(0);
}
Completed
Last Updated: 30 Sep 2016 06:52 by ADMIN