Hi All,
I am using MVVM and use xamGrid for display of records, i bind the xamGrid in xaml, on page loading i fill the binding collection. That collection shown in grid, than i add an object in collection using a button, object is added in collection, and collection size is increased but xamGrid not show off the newly added object. XamGrid not refreshed after adding new object in collection. Same behavior is shown in sample application.
Regards
Sufyan
HI Sufyan,
I have seen your sample. Try using ObservableCollection for PersonList instead "List". Because list will not have the notification behaviour by default.
I have replaced List with observablecollection in your sample. It works great. Let me know if you still face any issues.
Regards,
Pranitha.
Hi Pranitha,
Thank you so much. Your suggested solution solved my problem.
Thanks