I have the following comboboxcolumn that is bound to a collection of strings. The DataMemberBinding points to a property in the object model. This property gets updated in another part of the system, but the comboboxcolumn does not reflect the new value in view mode. As soon as I click on the field, the combox displays the updated value. How can I get it to update in view mode?
<telerik:GridViewComboBoxColumn Header="M"DataMemberBinding="{Binding SummaryGroupDetail.MisclassifiedType, Mode=TwoWay, NotifyOnSourceUpdated=True}"UniqueName="MisclassifiedType"ItemsSourceBinding="{Binding Path=DataContext.MisclassifiedTypes, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" />