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.
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: 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".
Unplanned
Last Updated: 03 Aug 2016 13:48 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: OutlookBar
Type: Bug Report
1
You can work this around by extracting the RadOutlookBar style and slightly modify it. You can find the Grid panel that holds the title and the minimize button and position the elements in different columns. 
 
<!-- Other XAML from the template -->
<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition />
        <ColumnDefinition />
    </Grid.ColumnDefinitions>
    <ContentControl x:Name="TitleElement" ContentTemplate="{TemplateBinding TitleTemplate}" Foreground="#FFDDDDDD"
                    FontWeight="Bold" HorizontalContentAlignment="Stretch" IsTabStop="False" Margin="5,3"
                    VerticalAlignment="Center" VerticalContentAlignment="Center"/>
    <telerik:RadToggleButton x:Name="MinimizeButton" Grid.Column="1"
                             IsChecked="{Binding IsMinimized, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
                             Style="{TemplateBinding MinimizeButtonStyle}">
        <telerik:RadToggleButton.Visibility>
            <Binding Path="IsMinimizable" RelativeSource="{RelativeSource TemplatedParent}">
                <Binding.Converter>
                    <telerik:BooleanToVisibilityConverter/>
                </Binding.Converter>
            </Binding>
        </telerik:RadToggleButton.Visibility>
    </telerik:RadToggleButton>
</Grid>
<!-- Other XAML from the template -->

Another approach is to use the ChildrenOfTypeExtensions.ChildrenOfType<T>() method to get the Grid and the minimize button, and add set the required properties. Here is an example:

private void outlookBar_Loaded(object sender, RoutedEventArgs e)
{
    var minimizeButton = this.outlookBar.ChildrenOfType<RadToggleButton>().FirstOrDefault(x => x.Name == "MinimizeButton");
    if (minimizeButton != null)
    {
        var parentGrid = minimizeButton.ParentOfType<Grid>();
        parentGrid.ColumnDefinitions.Add(new ColumnDefinition());
        parentGrid.ColumnDefinitions.Add(new ColumnDefinition());
        Grid.SetColumn(minimizeButton, 1);
    }
}
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.
Completed
Last Updated: 27 Sep 2016 07:11 by ADMIN
ADMIN
Created by: Peshito
Comments: 0
Category: OutlookBar
Type: Bug Report
0
ItemTemplateSelector does not work. 

There is a workaround to extract the control template and edit the HeaderElement style with:
<ContentControl.ContentTemplateSelector>{TemplateBinding HeaderTemplateSelector}</ContentControl.ContentTemplateSelector>

The problem is fixed and will be available with Lib 2016.3.926.
Unplanned
Last Updated: 03 Jan 2017 20:55 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: OutlookBar
Type: Bug Report
1
The DisplayMemberPath property is not respected

Workaround:
Use an implicit style targeting RadOutlookBarItem instead of the DisplayMemberPath property. You can define the style in the xaml page (the view) where the RadOutlookBar control is defined.

<Window.Resources>
    <Style TargetType="telerik:RadOutlookBarItem">
        <Setter Property="Header" Value="{Binding ItemHeader}" />
    </Style>
</Window.Resources>
Unplanned
Last Updated: 03 Jan 2017 20:55 by ADMIN
ADMIN
Created by: Pavel R. Pavlov
Comments: 2
Category: OutlookBar
Type: Bug Report
5
When the ItemsSource of the control is populated from a background thread, users are not allowed to manually set the position of the horizontal splitter.
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: 16 Apr 2014 08:19 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: OutlookBar
Type: Bug Report
3
If you set the SmallIcon property of a RadOutlookBarItem and you minimize the item the icon will not be visualized. Note that the icon is not visualized when a certain item goes in the popup.
Declined
Last Updated: 04 Feb 2016 16:33 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: OutlookBar
Type: Bug Report
5
The control is not translated in German

Reason for declination: 
The XAML team has recently reviewed this issue and it cannot be reproduced by following the described steps in our help:
http://docs.telerik.com/devtools/silverlight/common-localization.html#localization-using-built-in-resources
If you still encounter this issue and it is blocking for your work please contact us through the support ticketing system with details on your setup and a reference to this item. 
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: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: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 20:45 by ADMIN
When the selected item is Collapsed, the RadOutlookBar still displays its content and Title
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.
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" />
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
Completed
Last Updated: 04 Nov 2016 15:19 by ADMIN
The foreground of the MinimizedButton and minimizeable arrow in Expression_Dark theme is wrong. The issue appears when the OutlookBar is minimized and the minimized button is clicked
1 2