Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have difficulties in binding the follow structures to XAML View:

public class SampleViewModel : ViewModelBase
{
   public ObservableCollection<ChildViewModel> Child { get; set; }
   ...
   public ObservableCollection<Country> Countries { get; set; }
   ...
}
public class ChildViewModel : ViewModelBase
{
   private int _CountryId;
   public int CountryId
   {
      get { return _CountryId; }
      set
      {
         _CountryId = value;
         OnPropertyChanged("CountryId");
      }
   }
   ...
}
// Country structure is not shown, just an int and string for CountryID 
// and Name in this case

Instance of SampleViewModel is set as DataContext of a View. I bind the collection Child to a GridView ItemsSource. In the GridView I have a ComboBox for Country and I want to populate it with Countries collection in the SampleViewModel.

<Telerik:RadGridView ItemsSource="{ Binding Child }" ...>
   <Telerik:RadGridView.Columns>
      <Telerik:GridViewComboBoxColumn DataMemberBinding="{Binding CountryId}"
                                      SelectedValueMemberPath="Id"
                                      DisplayMemberPath="Name"
                                      ItemsSource="{Binding ????}" />
      ...
   ...
...

What should be the ItemsSource ? How can I go back to root VM's properties inside a ItemsSource="{ Binding Child }" ?

Or how should I restructure the ViewModel to achieve the above ?

share|improve this question

1 Answer

up vote 1 down vote accepted

I am not sure how if this works with the Telerik controls, but usually you declare the binding via the RelativeSource attached property:

{Binding Path=DataContext.Countries, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type Telerik:RadGridView}}}

Another way is to set a name on your RadGridView and use that as ElementName:

<Telerik:RadGridView ItemsSource="{ Binding Child }" x:Name="gridView">
...
      <Telerik:GridViewComboBoxColumn DataMemberBinding="{Binding CountryId}"
                                      SelectedValueMemberPath="Id"
                                      DisplayMemberPath="Name"
                                      ItemsSource="{Binding DataContext.Countries, ElementName=gridView}" />
share|improve this answer
After fixing my stupid typo in my example's XAML, the ElementName way works. Thanks. – Lepton Feb 23 '12 at 8:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.