Posted 23 Mar 2011 Link to this post
<telerik:DataFormComboBoxField DataMemberBinding="{Binding Path=CNTYNAME}"
...
Grid.Column="2"
Grid.Row="2"
Posted 24 Mar 2011 Link to this post
I am sending you a sample project illustrating how you may define the DataFormComboBoxField. Generally, the definition should be as follows:
<
telerik:DataFormComboBoxField
SelectedValuePath
=
"ID"
DisplayMemberPath
"Name"
DataMemberBinding
"{Binding CountryID, Mode=TwoWay}"
ItemsSource
"{Binding Countries, Source={StaticResource MyViewModel}}"
/>