Ticket T853778
Visible to All Users

BarEditItem - ComboBoxEdit in DataTemplate does not display value

created 5 years ago

Hello,
I'm using the ComboBoxEdit in DataTemplate, but it does not display the value.
Is setting of ItemsSource wrong?
I have attached a Sample project.

XAML
<dxb:BarEditItem Content="Item" EditValue="{Binding CurrentItemId}" EditValueChanged="{DXEvent Handler='SelectItemEvent(@sender.Content, @args)'}" IsEnabled="{Binding IsSelectItemEnabled}"> <dxb:BarEditItem.EditTemplate> <DataTemplate> <dxe:ComboBoxEdit Name="PART_Editor" ItemsSource="{Binding ItemList}" IsTextEditable="False" DisplayMember="Value" ValueMember="Id" PopupOpening="{DXEvent Handler='ClickItemComboBoxEvent()'}"/> </DataTemplate> </dxb:BarEditItem.EditTemplate> </dxb:BarEditItem>

Answers approved by DevExpress Support

created 5 years ago

Hello,

Controls within BarEditItem.EditTemplate don't inherit their DataContext from BarEditItem (you can check this using Live Visual Tree or Snoop). As a result, your ItemsSource property binding does not work. I suggest you bind via the BarItemLinkInfo.Item property, which stores your BarEditItem object:

XAML
<dxe:ComboBoxEdit Name="PART_Editor" DisplayMember="Value" IsTextEditable="False" ItemsSource="{Binding Item.DataContext.ItemList, RelativeSource={RelativeSource AncestorType={x:Type dxb:BarItemLinkInfo}}}" PopupOpening="{DXEvent Handler='@a($dxb:BarItemLinkInfo).Item.DataContext.ClickItemComboBoxEvent()'}" ValueMember="Id" />

Thanks

    Comments (1)

      Thanks, It works.

      Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

      Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.