We currently having issues using the RadMultiColumnComboBox when we change property on the view model which we are binding to.
1. We have multiple items with properties and one property is connected to the ComboBox.
2. We select one item in the view and the connected property is displayed in the ComboBox correctly.
3. We select a different item with the same value in the connected property, but the ComboBox does not display any text (null text).
4. Selecting another item with different value in the connected property results in displaying text again in the ComboBox.
For example items could be employees with a display name (DisplayName) property. We have a list of employees populated as item source provider.
The DisplayMemberPath in the ComboBox is set to the DisplayName property.
The SelectedItem property is set to the employee. We also have three more ComboBoxes on the same page that behave correctly (just binding to different properties) and cause no issue.
Any idea what could go wrong?
Regards, Martin