Won't Fix
Last Updated: 11 Dec 2023 13:02 by ADMIN
As a <role> I want <ability> so that <benefit>.
Unplanned
Last Updated: 18 Oct 2023 09:12 by ADMIN
Created by: santhosh
Comments: 2
Category: ToolBar
Type: Feature Request
2
 Introduce support for key tips.
Unplanned
Last Updated: 02 Jun 2023 11:50 by Martin Ivanov
Allow navigation with the Up and Down keyboard keys in the overflow items when the popup is opened. The navigation should highlight the items and Enter press should activate them (the same that happens on item click).

This behavior is similar to the keyboard navigation in RadMenu and RadRibbonView.
Completed
Last Updated: 22 May 2023 10:42 by ADMIN
Release LIB 2023.1.522 (22 May 2023)

Most controls that show a drop down capture the mouse to cancel the scrolling of any parent ScrollViewers while the drop down is opened. The ToolBar overflow items drop down doesn't prevent the scrolling in parent ScrollViewers (a ScrollViewer that wraps the content where the ToolBar is defined). In that case if the user scrolls the ScrollViewer while the overflow items are opened, the ToolBar control moves according to the new position, but the popup stays open at its original position.

The common behavior here is to prevent scrolling while the drop down is opened. 

To work this around, you can subscribe to the MouseWheel event of RadToolBar and handle it in case the IsOverflowOpen property is True.

private void ToolBar_MouseWheel(object sender, MouseWheelEventArgs e)
        {
            var toolBar = (RadToolBar)sender;
            if (toolBar.IsOverflowOpen)
            {
                e.Handled = true;
            }
        }

Completed
Last Updated: 21 May 2021 11:57 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
The RadToolBar.OverflowMode attached property is not respected when set on an element in the ItemTemplate of RadToolBar.
Completed
Last Updated: 03 Aug 2020 08:55 by ADMIN
The RadToolBar.ItemAlignment attached property is not respected when it is set to element inside DataTemplate.
Declined
Last Updated: 02 Apr 2020 15:07 by ADMIN

This is the most logged exception in my application and it looks like it's coming from RadToolBar: Specified element is already the logical child of another element. Disconnect it first.

Stacktrace:

System.Windows.FrameworkElement.ChangeLogicalParent(DependencyObject newParent):50
System.Windows.FrameworkElement.AddLogicalChild(Object child):55
System.Windows.Controls.UIElementCollection.AddInternal(UIElement element):7
System.Windows.Controls.UIElementCollection.Add(UIElement element)
Telerik.Windows.Controls.RadToolBar.InsertInPanel(Panel panel, UIElement container, Int32 position):3
Telerik.Windows.Controls.RadToolBar.OnItemsCollectionChanged(Panel panel, NotifyCollectionChangedEventArgs e):136
Telerik.Windows.Controls.RadToolBar.OnOverflowItemsCollectionChanged(Object sender, NotifyCollectionChangedEventArgs e)
System.Collections.ObjectModel.ObservableCollection`1.OnCollectionChanged(NotifyCollectionChangedEventArgs e):15
System.Collections.ObjectModel.ObservableCollection`1.InsertItem(Int32 index, T item):36
System.Collections.ObjectModel.Collection`1.Add(T item):32
System.Collections.ObjectModel.Collection`1.System.Collections.IList.Add(Object value):28
Telerik.Windows.Controls.RadToolBar.InsertOverflowItem(Object item, Int32 position):45
Telerik.Windows.Controls.RadToolBar.TryMoveStripItemToOverflow(Int32 index)
Telerik.Windows.Controls.RadToolBar.MeasureOverride(Size availableSize):70
System.Windows.FrameworkElement.MeasureCore(Size availableSize):568
System.Windows.UIElement.Measure(Size availableSize):401
System.Windows.Controls.Grid.MeasureOverride(Size constraint):67
System.Windows.FrameworkElement.MeasureCore(Size availableSize):568
System.Windows.UIElement.Measure(Size availableSize):401
System.Windows.Controls.Border.MeasureOverride(Size constraint):256
System.Windows.FrameworkElement.MeasureCore(Size availableSize):568
System.Windows.UIElement.Measure(Size availableSize):401
MS.Internal.Helper.MeasureElementWithSingleChild(UIElement element, Size constraint):28
Completed
Last Updated: 20 Feb 2020 13:39 by ADMIN
Release R1 2020 SP
Add a possibility to bind the RadToolBarTray and generate RadToolBars.

By design the RadToolBarTray is created more like a Panel, not like a typical ItemsControl.  
Unplanned
Last Updated: 28 Mar 2019 14:54 by ADMIN

Dear Support,

please add a property AutoCloseOverflowPanel (or similar) to RadToolBar that will cause the overflow panel to close automatically if the user moves the mouse outside of the overflow panel.

Rationale for this request: Consider a situation where RadComboBoxes or RadRibbonComboBoxes are used to modify the Font Familiy and the Font Size of text being entered. If the toolbar isn't given too much space, these controls will be placed on the overflow panel. If the user selects a new font and then wants to continue editing (using the new font)), at the moment he has to click somewhere outside the overflow panel. If he clicks inside the RadRichTextBox, he will most likely click in some area where he has already entered some text and the font family will be set to the font family of the text he clicked into.

For an example, please see my support request 1401504.

Kind Regards

Stephan Kühn

Unplanned
Last Updated: 25 Mar 2019 15:08 by ADMIN
When the overflow button is clicked the OverflowPanel will be always open. Provide a support for closing the panel when the button is click again. 
Completed
Last Updated: 12 Feb 2019 08:29 by ADMIN

When the RadToolBar is collapsed through the OverFlow Popup, the popup remains open. 

As a workaround the popup can be closed when the RadToolBar's Visibility is collapsed:

var button = sender as RadRibbonButton;
var popup = button.ParentOfType<Popup>();
popup.IsOpen = false; 

Unplanned
Last Updated: 16 Oct 2018 07:02 by ADMIN
workaround:
for Material theme - add mat:MaterialAssist.FocusBrush = "{x:Null}" to the control instances you would like
for the rest of the themes: either set Focusable = "False" or retemplate and remove the focus in the StyleSelector of the RadToolbar
Completed
Last Updated: 17 Sep 2018 11:23 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 1
Category: ToolBar
Type: Bug Report
0
The button focus visual should not be displayed when you click on another button in the UI. Currently, because the toolbar has its own focus scope, it is possible to have the focus on the button and also on another UI element. This means that the button will have its focus visual shown.

To work this around you can extract the Template of the RadButtonStyle from the Telerik.Windows.Themes.Fluent.xaml file and remove the General IsFoucused setters (MultiTrigger). Then you can apply the style using the style selector of the toolbar. For your convenience I prepared a small example showing this approach. I hope that helps.

https://docs.telerik.com/devtools/wpf/styling-and-appearance/styling-apperance-editing-control-templates

https://docs.telerik.com/devtools/wpf/controls/radtoolbar/styling-and-appearance/style-selector
Completed
Last Updated: 03 Jul 2018 12:45 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: ToolBar
Type: Feature Request
11
The overflow button should have an option to show only when it is needed.
Unplanned
Last Updated: 12 May 2017 15:01 by ADMIN
RadTooBar holds a Button and it is shown in Contentframe. When shown the button is initially disabled. Clicking on other button makes the first button enabled.

Possible workaround is to set FocusManager.IsFocusScope to False on the Toolbar.
Unplanned
Last Updated: 10 Mar 2017 14:12 by ADMIN
This is reproducible also with the Green theme. 

As a workaround you can extract the RadToolBar ControlTemplate and modify the column/row definitions of the root Grid element. 
(http://docs.telerik.com/devtools/wpf/styling-and-appearance/styling-apperance-editing-control-templates)

This is for vertical orientation:

<Grid.ColumnDefinitions>
	<ColumnDefinition x:Name="c0" Width="Auto"/>

<ColumnDefinition x:Name="c1" Width="*"/>
<ColumnDefinition x:Name="c2" Width="Auto"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition x:Name="r0" Height="Auto"/>
<RowDefinition x:Name="r1" Height="*"/>
<RowDefinition x:Name="r2" Height="Auto"/>
</Grid.RowDefinitions>


This is for horizontal orientation:

<Grid.ColumnDefinitions>
<ColumnDefinition x:Name="c0" Width="Auto"/>
<ColumnDefinition x:Name="c1" Width="*"/>
<ColumnDefinition x:Name="c2" Width="Auto"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition x:Name="r0" Height="*"/>
<RowDefinition x:Name="r1" Height="Auto"/>
<RowDefinition x:Name="r2" Height="Auto"/>
</Grid.RowDefinitions>
Unplanned
Last Updated: 05 Jan 2017 11:42 by ADMIN
Buttons in the OverFlowButtons have CheckBoxes indicating whether the Buttons are added or removed from the Toolbar.
Unplanned
Last Updated: 05 Jan 2017 08:00 by ADMIN
ToolBar Band and BandIndex properties are not applied when the control is set in a DataTemplate of a ToolBarTray
Unplanned
Last Updated: 05 Jan 2017 08:00 by ADMIN
Ability to stretch / fill the controls in the toolbar when resizing needed. 
Currently, the controls are placed in the overflow immendiately when there is no space for them. 
The controls do not stretch when the toolbar is stretched.
Unplanned
Last Updated: 05 Jan 2017 08:00 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ToolBar
Type: Feature Request
5
Add global HotKeys support to allow hotkeys/shortcut keys to trigger the RadToolBar content elements.
1 2