I've got a combobox with MultiSelection, and in order to implement proper binding of selected items I use the following style:
<telerik:RadComboBox.ItemContainerStyle> <Style TargetType="telerik:RadComboBoxItem"> <Setter Property="IsSelected" Value="{Binding IsSelected, Mode=TwoWay}}" /> </Style> </telerik:RadComboBox.ItemContainerStyle>
The binding of the selection works both ways, but unfortunately the Text-property isn't initialized to my set of selected items. The combobox remains empty until i open its dropdown, and then the Text-property is set. Seems like a bug, but is there maybe a way to get around it?