Unplanned
Last Updated: 03 Jan 2017 20:55 by ADMIN
ADMIN
Martin Ivanov
Created on: 08 Jan 2015 16:15
Category: OutlookBar
Type: Bug Report
1
OutlookBar: The DisplayMemberPath property is not respected
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>
0 comments