This question is locked. New answers and comments are not allowed.
I must be missing something easy here....how do I make my combobox bind to a class object rather than an id? Ex: I have a person object with a State property which points to a State object. I set my combobox itemssource to an ObservableCollection(of State). I want to bind to the Person.State property and have it update accordingly (more like what the Silverlight Combobox does).
The following does not work. If I click on the list it shows my list of states but the combo does not populate with the selected state (the ItemsSource is set in codebehind in the DataLoading event since all my data comes from a WCF service).
The following does not work. If I click on the list it shows my list of states but the combo does not populate with the selected state (the ItemsSource is set in codebehind in the DataLoading event since all my data comes from a WCF service).
<telerikGridView:GridViewComboBoxColumn HeaderText="State" DataMemberBinding="{Binding Path=State, Mode=TwoWay}" DisplayMemberPath="StateName" />
v2009.2.925.1030,