Goodmorning,
I have Sfdatagrid with
ItemsSource="{Binding Projects}" in view. In viewModel i have
public ObservableCollection<Project> Projects { get; set; }.
When I remove one element from
Projects
(Projects.Remove(Project)) in viewmodel the SFDatagrid refrash the table but if I Add or change one element of the ObservableCollection SfDataGrid does not refrash the table.
I try to replace SFDataGrid with <CollectionView ItemsSource="{Binding Projects}"> with the same ViewModel and the adding work correctly.
Thanks. Best regards.
Roberto