This question is locked. New answers and comments are not allowed.
I can't seem make binding work on SelectedIndex ... I can make it work on SelectedItem, but if I bind to a property (integer) and change the property, nothing happens to the ComboBox (it's not being updated to reflect the new SelectedIndex).
<
telerik:RadComboBox
x:Name
=
"CustomerAcctNameUsageComboBox"
Grid.Column
=
"4"
Grid.Row
=
"2"
Grid.ColumnSpan
=
"2"
Style
=
"{StaticResource DCRadComboBoxFill}"
ItemsSource
=
"{Binding Path=LookupCustomerAcctNameUsage, Mode=TwoWay}"
DisplayMemberPath
=
"CustomerAccountNameUsageDesc"
SelectedIndex
=
"{Binding Path=Customer.CustomerAccountNameUsageID, Mode=TwoWay}"
/>