Hi,
I have a SfDataGrid with ItemSources binding to an ObservableCollection<ItemViewModelType>.
I also have a SfListView with
ItemSources
binding
to the same ObservableCollection<ItemViewModelType>. and SelectedItems also
binding
to an
ObservableCollection<ItemViewModelType>.
However, I can just binding SfDataGrid's SelectedRows to an ObservableCollection<object> while the object has type is
ItemViewModelType.
So, how can I binding
SfDataGrid's SelectedRows to the same collection as
SfListView's SelectedItems
?
or how can I update the SelectedRows whenever the SfListView's SelectedItems changed and vise vice versa?
Thanks and best regards,
TH