Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
980
XamDataGrid and ObservableCollection
posted

I have a DataGrid bound to an ObservableCollection via:

 

 <igDP:XamDataGrid Name="Grid" DataSource="{Binding Path=GridData}" AutoFit="False" GroupByAreaLocation="None" Theme="[current]">

 

GridData is an observablecollection of a type that I use to populate the grid. However, when I add/remove/update from that collection, the grid does not update. Am I missing something obvious to get the grid to behave correctly with ObservableCollection?

Thanks!