Hello,
I'm using a SfDataGrid with Master-Detail View. The DataGrid has multiple ComboBox Columns. It is defined in XAML as such:
As you can see its ItemsSource is PubSubMappingTable which is a Data Object Collection that implements
IList, INotifyCollectionChanged, IEnumerable, INotifyPropertyChanged. It Contains multiple Properties, among them is another Data Object Collection named Topics.
Topics is another Data Object Collection that contains multiple Properties, among them is another Data Object Collection named Fields.
In my Grid, i have a comboBoxColumn for my Topics:
And the Details View uses Topic.Fields as its relational column:
Everything works fine, except that the details view (that contains the fields of the selected topic) is not updated when i change the topic, even though my data grid uses LiveDataUpdateMode="AllowChildViewUpdate"!
I would appreciate your help.
Thank you,
Ronnie.