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
Completed
Last Updated: 02 Nov 2018 15:37 by ADMIN
Workaround for this bug is setting Style.Triggers for this scenario.

<Style BasedOn="{StaticResource RadRibbonSplitButtonStyle}" TargetType="telerik:RadRibbonSplitButton">
  <Style.Triggers>
    <MultiTrigger>
      <MultiTrigger.Conditions>
        <Condition Property="IsChecked" Value="True"/>
        <Condition Property="IsEnabled" Value="True"/>
        <Condition Property="CurrentSize" Value="Medium"/>
      </MultiTrigger.Conditions>
      <MultiTrigger.Setters>
        <Setter Property="Foreground" Value="{DynamicResource CheckedBrush}"/>
      </MultiTrigger.Setters>
    </MultiTrigger>
  </Style.Triggers>
</Style>
Completed
Last Updated: 17 Nov 2016 13:28 by ADMIN
The KeyboardNavigation throws null reference exception when you try to move through the DropDownButton of the QAT and we does not have the button in the style targeting the QAT.


Available in LIB version: 2016.3.1121
Won't Fix
Last Updated: 14 Jul 2021 14:22 by ADMIN
The designer of VS crashes with a "Key cannot be null" when custom markup extension is used in Style Setter. This reproduces in the sample app attached in the blog (http://www.telerik.com/blogs/bring-office-2016-inspired-style-to-your-app-with-ui-for-wpf) on the TextBlock of the RabRadioButton HeadingStyle (snapshot attached) if you open MainWindow in Designer. Runtime everything works as expected.
Unplanned
Last Updated: 27 Feb 2017 11:36 by ADMIN
This is reproducible only if the ribbon window chrome is enabled (IsWindowsThemeEnabled=False).


You can resolve this by registering an input binding for the Alt+Space key gesture and attaching it to the Telerik.Windows.Controls.RibbonView.Shell.SystemCommands.ShowSystemMenuCommand RoutedUICommand.

static MainWindow()
{
     var keyBinding = new KeyBinding(Telerik.Windows.Controls.RibbonView.Shell.SystemCommands.ShowSystemMenuCommand, new KeyGesture(Key.Space, ModifierKeys.Alt));
     CommandManager.RegisterClassInputBinding(typeof(RadRibbonWindow), keyBinding);
     RadRibbonWindow.IsWindowsThemeEnabled = false;
}
Completed
Last Updated: 25 May 2023 13:36 by ADMIN
Reproduces when you add the ContextualGroups in code-behind. While resizing the RibbonWindow the Ribbon Title overlaps the ContextualGroup Header. 
https://admin.telerik.com/ClientsFiles/c8763f1e-5c7f-4614-a7eb-349326cd32b2_telerikBug.PNG
Completed
Last Updated: 09 Oct 2017 12:18 by ADMIN
Fix available in LIB Version 2017.3.1009.
Unplanned
Last Updated: 07 Mar 2017 12:41 by ADMIN
Completed
Last Updated: 31 May 2017 13:48 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: RibbonView
Type: Bug Report
0
You can't add a RibbonTab from design-time. It seems that manipulating RibbonView using the additional option in design time isn't working.


Available in LIB version: 2017.2.605
Unplanned
Last Updated: 27 Jul 2017 17:53 by ADMIN
The default size is 9. If you change it the issue occurs. This brings a visual glitch in the window. The title text is resized but the titlebar is not.

Note: This is reproducible only if the DPI is larger than 100%.

To work this around manually set the size of the titlebar element.

private void MainWindow_Loaded(object sender, RoutedEventArgs e)
{
    Grid windowDecorator = this.ChildrenOfType<Grid>().FirstOrDefault(x => x.Name =="MaximizeWindowDecorator");
    RibbonTitleBarPanel ribbonTitlePanel = this.ChildrenOfType<RibbonTitleBarPanel>().FirstOrDefault(x => x.Name == "RibbonTitleBarPanel");
    windowDecorator.RowDefinitions[0].Height = newGridLength(ribbonTitlePanel.ActualHeight);
}
Unplanned
Last Updated: 09 Aug 2017 09:06 by ADMIN
Currently, RadRibbonView's OnApplyTemplate method can be called after adding the new tabs so that the group and tabs are redrawn correctly.
Completed
Last Updated: 25 Aug 2017 11:17 by ADMIN
Completed
Last Updated: 09 Oct 2017 13:18 by ADMIN