Unplanned
Last Updated: 03 Jan 2017 20:26 by ADMIN
The IsMinimizedChanged method does not inspect the ACTUAL width of the control
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: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 20:31 by ADMIN
The selection of a minimized item cannot be visually cancelled.
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.
Unplanned
Last Updated: 03 Jan 2017 20:25 by ADMIN
Content is lost when setting IsMinimizable to false and the OutlookBar is minimized
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:33 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: OutlookBar
Type: Bug Report
3
TabIndex/Tab navigation is not working inside 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 20:45 by ADMIN
When the selected item is Collapsed, the RadOutlookBar still displays its content and Title
Unplanned
Last Updated: 03 Jan 2017 20:50 by ADMIN
When the OutlookBar is minimized and you click the right splitter without moving it. Then the outlookbar is still minimized does not expand to the previous expanded position
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 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 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);
    }
}