Hi,
I am using XamDataGrid which has its DataSource set in binding which is of Type Collection,Now when my Collection is getting Updated, XamDataGrid is not getting refreshed, Please let me know a way of getting the Updated Data on XamDataGrid. (I dont want to use ObservableCollection as DataSource)
Thanks
Ram
I have a custom datatype also that is bound with a treeview.
Try using a ObservableCollection:
ObservableCollection<businessObjects>
-Matt
I am using a collection of custom datatype
something like collection<businessObjects>.
Hello Ram,
What type of collection are you using? It has to implement INotifyCollectionChanged interface, so that the XamDataGrid would know how/when to refresh according to the collection.