Completed
Last Updated: 31 May 2022 10:41 by ADMIN
Release LIB 2022.2.606 (6 Jun 2022)
When the control is in minimized state and the items do not have an icon, the headers are not visible.
Declined
Last Updated: 15 Sep 2020 07:54 by ADMIN
ADMIN
Created by: Nikolai
Comments: 1
Category: OutlookBar
Type: Feature Request
11
Allow the user to manually set the position of the OutlookBarItem : ActiveArea, MinimizedArea or OverflowArea
Completed
Last Updated: 15 Jan 2019 06:58 by ADMIN
This happens  whether there is available space in the active area are not. All items are rendered in the minimized area.

To work this around you can set the IsContentPreserved property after the control is loaded.
private void FavouritesBar_Loaded(object sender, RoutedEventArgs e)
{
    Dispatcher.BeginInvoke(new Action(() =>
    {
        this.FavouritesBar.IsContentPreserved = true;
    }), (DispatcherPriority)3);
}


The fix for this issue will be available with the next LIB (version 2018.3.1224) expected on Monday, December 24.
Completed
Last Updated: 11 Dec 2018 15:43 by ADMIN
The style of the items that are contained in the dropdown content of the overflow button cannot be edited.
Completed
Last Updated: 19 Oct 2018 05:24 by ADMIN
The Metro theme isn't properly applied on the RadOutlookBarItems if it is set in the RadOutlookBar definition:
<telerik:RadOutlookBar telerik:StyleManager.Theme="Metro" />
Completed
Last Updated: 21 Sep 2018 14:09 by ADMIN
As a workaround, you can add a custom Margin and Padding to the MinimizedOutlookBarItems:

<Style TargetType="outlookBarPrimitives:MinimizedOutlookBarItem">
    <Setter Property="Padding" Value="5" />
    <Setter Property="Margin" Value="2" />
</Style>

Where xmlns:outlookBarPrimitives="clr-namespace:Telerik.Windows.Controls.OutlookBar;assembly=Telerik.Windows.Controls.Navigation".
Declined
Last Updated: 30 Apr 2018 12:35 by ADMIN
ADMIN
Created by: Kiril Vandov
Comments: 2
Category: OutlookBar
Type: Bug Report
0
Tab navigation is not working inside OutlookBar.

DECLINED: Duplicated with https://feedback.telerik.com/Project/143/Feedback/Details/113083-outlookbar-tab-navigation-is-not-working
Completed
Last Updated: 20 Apr 2018 12:12 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: OutlookBar
Type: Feature Request
11
The logic of the IsContentPreserved (inherited from RadTabControl) property could be implemented in RadOutlookBar
Completed
Last Updated: 08 Nov 2017 13:48 by ADMIN
Available in LIB version 2017.3.1113, it will be also available in the R1 2018 Release.
Completed
Last Updated: 27 Feb 2017 08:29 by ADMIN
When the OutlookBar is minimized during run-time change of themes the text set to item's header overlaps the minimizing toggle button.

You can work this around by creating a custom control that derives from RadOutlookBar and override its OnApplyTemplate() method. Inside the method call the protected VisualStateChanged() method.

public class CustomOutlookBar : RadOutlookBar
{
	public override void OnApplyTemplate()
	{
		base.OnApplyTemplate();
		this.ChangeVisualState(false);
	}
}

Available in the R1 2017 SP1 Release.
Unplanned
Last Updated: 03 Jan 2017 21:22 by ADMIN
Add the posibilty for the RadOutlookBar control to have Width less than the specified MinWidth, when Minimized.
Unplanned
Last Updated: 03 Jan 2017 21:16 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: OutlookBar
Type: Bug Report
5
OutlookBar: Visual state of selected items in not correct
Unplanned
Last Updated: 03 Jan 2017 21:16 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: OutlookBar
Type: Feature Request
6
Provide visibility enumeration for the Overflow button "WhenNeeded", "Visible", "Hidden/Collapsed"
Unplanned
Last Updated: 03 Jan 2017 21:15 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: OutlookBar
Type: Bug Report
1
 Clicking on MinimizedOutlookBarItem when there is Visibility set to Collapsed on one of the items, the RadOutlookBar selects different item.
Unplanned
Last Updated: 03 Jan 2017 21:05 by ADMIN
Currently , there is no possible way to drag an object fromt he Outlookbar's Popup and drop it outside the OutlookBar
Unplanned
Last Updated: 03 Jan 2017 21:05 by ADMIN
The foreground of the content in the pop-up when the OutlookBar is minimized in Windows8 (Metro) and Windows8Touch themes is wrong - it is white like the background.
Unplanned
Last Updated: 03 Jan 2017 21:05 by ADMIN
Tooltip is shown on horizontal splitter when ActiveItemsMaxCount = 0 but it shouldn't show since the splitter cannot be moved
Unplanned
Last Updated: 03 Jan 2017 21:04 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: OutlookBar
Type: Bug Report
5
The ActiveItemsCount is not working
Unplanned
Last Updated: 03 Jan 2017 21:00 by Miroslav Paskov
Created by: Miroslav Paskov
Comments: 0
Category: OutlookBar
Type: Feature Request
3
There should be a way to set horizontal orientation for the items of the OutlookBar.
1 2 3