[DevExpress Support Team: CLONED FROM T813646: ListBoxEdit - How to horizontally stretch custom content from ItemTemplate]
Hello,
im customizing my item template like this
XAML<dx:ListBoxEdit.ItemTemplate>
<DataTemplate>
<dxlc:LayoutGroup Orientation="Horizontal">
<dxlc:LayoutItem Label="{x:Static p:KundenResources.supplierGroup}">
<TextBlock Text="{Binding Lieferantengruppe}"/>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="bis">
<dx:DateEdit EditValue="{Binding bis}"/>
</dxlc:LayoutItem>
<dxlc:LayoutItem Label="eyo">
<dx:DateEdit EditValue="{Binding von}"/>
</dxlc:LayoutItem>
</dxlc:LayoutGroup>
</DataTemplate>
</dx:ListBoxEdit.ItemTemplate>
Additionally i just noticed that if an item is selected and i go from an empty dateedit to picking a date, the item is suddenly unselected.