Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
Expose an event where the key combinations that (don't)show the KeyTips can be customized.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
When the DropDownButton in an ApplicationMenu is clicked, the DropDown area should not be closed (see MS Excel for reference).
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
RibbonGroup collection can be populated only w/ buttons from the designer
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Feature Request
4
QAT should have overflow
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Feature Request
2
Make the gallery resizable
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Feature Request
4
Any group or button can be right clicked and added to the Quick Access Toolbar (QAT).
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Feature Request
2
Expose properties to control the BackstageItem.Icon size
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
If you delay adding a RibbonView in a RibbonWindow, the RibbonView is placed on top of the window, hiding its TitleBar.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
When both Command and IsEnabled of RadRibbonBackstage are bound, the Command has Higher priority. This is inconsistency with the behavior of Buttons and RadButtons. The RadRibbonBackStageItems should work like RadButtons.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
The KeyTips of RadMenuItems go behind the menu when hovering over the RadMenuItem. This issue seems to be related to the ScreenTip/ToolTip settings applied on the RadMenuItems - if no such settings are applied, the issue cannot be reproduced.
The Tooltip popup is placed over the KeyTips popup.
Unplanned
Last Updated: 05 Jan 2017 07:59 by ADMIN
RadGallery is used in RadRibbonView  and ListBox under the RibbonView with  DeferredScrollingEnabled set to true. When scrolling the Gallery, the ListBox Scrolls unexpectedly.
Completed
Last Updated: 04 Jan 2017 14:01 by ADMIN
If a RibbonView is used in a WPF, where the Window SizeToContent property is set to WidthAndHeight, the Window takes too much space.
Completed
Last Updated: 09 Dec 2016 14:36 by ADMIN
Completed
Last Updated: 08 Nov 2016 14:45 by ADMIN
Add the ability, while holding down a modifier key (for instance ALT which triggers the KeyServices) and pressing the AccessText key at the same time, to execute the action associated with the element.

Available in R1 2017 Release
Please note that is it working only for KeyDown ActivationModes, not in the default KeyUp.
Completed
Last Updated: 03 Nov 2016 12:03 by ADMIN
Allow the ApplicationMenu to be used as a stand-alone control



Available in R1 2017 Release
Declined
Last Updated: 03 Nov 2016 11:16 by ADMIN
ADMIN
Created by: Tina Stancheva
Comments: 0
Category: RibbonView
Type: Feature Request
1
Add MouseOver Selection states in the RadRibbonTab control

Decline reason: RibbonView and its elements (including TabControl) are inspired by MS Office products. Since hovering over the selected TabItem in MS Word for example doesn't change its visual appearance it shouldn't in RibbonView as well.
If your project design still requires such appearance then we highly recommend that you edit the Control Template of the TabControl in Telerik.Windows.Controls.RibbonView assembly and add a MultiTrigger Condition (in WPF):
  <MultiTrigger>
                <MultiTrigger.Conditions>
                    <Condition Property="IsMouseOver" Value="True"/>
                    <Condition Property="IsSelected" Value="True"/>
                </MultiTrigger.Conditions>
...
</MultiTrigger>
or add a  <VisualState x:Name="SelectedMouseOver"> to CommonStates VisualStateGroup.
Completed
Last Updated: 03 Nov 2016 09:22 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Bug Report
4
There are three errors for missing icons when implicit themes are used:
Resource '/Telerik.Windows.Controls.RibbonView;component/HelpIcon.png' was not found.
Resource '/Telerik.Windows.Controls.RibbonView;component/RibbonGalleryCollapsedIcon.png' was not f
Completed
Last Updated: 03 Nov 2016 09:21 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: RibbonView
Type: Bug Report
4
There is a flickering when the active ContextualGroup is changed - the RibbonView first selects the non-contextual main tab before it switches to the according contextual tab. The flickering can't be observed every time.
Completed
Last Updated: 12 Oct 2016 10:32 by ADMIN
Open the Application menu.
Open one of its submenus.
Hover another button.

The opened submenu will not close.

Available in LIB version: 2016.3.1017
Declined
Last Updated: 07 Oct 2016 14:02 by ADMIN
This issue occurs when the ApplicationMenu is bound. The button in the ItemTemplate of the ApplicationMenu could be both RadSplitButton and RadDropDownButton. Their DropDownContent should not be displayed downwards, it should be displayed in the RightPane ( the Content of the Applicationmenu)

Declined: When the ApplicationMenu is in DataBound scenario the ItemsControl from which the ApplicationMenu inherits automatically creates ContentPresenters for each item and wraps their content. As the ApplicationMenu knows how to manage RadRibbonDropDown/Split buttons you will need to provide one of these containers as direct child of the  menu. You can achieve that using the following code, to show all items as RadRibbonDropDownButton:

public class CustomApplicationMenu : ApplicationMenu
    {
        protected override bool IsItemItsOwnContainerOverride(object item)
        {
            return false;
        }

        protected override DependencyObject GetContainerForItemOverride()
        {
            return new RadRibbonDropDownButton();
        }
    }