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.
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. 
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
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.
Unplanned
Last Updated: 05 Jan 2017 08:00 by ADMIN
Allow CloseOnEscape feature for RadDropDownButtons and RadSplitButtons in the RadToolBar
Unplanned
Last Updated: 05 Jan 2017 08:00 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ToolBar
Type: Feature Request
10
Allow the ToolBar to to set a WrapPanel as an ItemsPanel.
Unplanned
Last Updated: 03 Jan 2017 21:18 by ADMIN
There is a ContextMenu inside DropDownContent of a DropDownButton which is in the OverflowPopup. Closing the menu does not close the overflow area of the toolbar.

And this i by desing, context menu is not responsible for closing all popups up above it.

RadToolBar can handle this scenario with subscribing to ContextMenu events.
Unplanned
Last Updated: 03 Jan 2017 20:22 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 0
Category: ToolBar
Type: Feature Request
2
Allow the RadToolBar to apply locally set Styles to its elements even if they have predefined styles in the ContainerStyleSelector.