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
235
XamDataGrid does not refresh right away
posted

I'm using the WPF XamDataGrid (v12.2) whose DataSource is bound to an ObservableCollection.  I allow the user to mass edit rows via a button, so when the button is clicked I get the SelectedItems.Records, cast their DataItem to the class that they are, and then modify some of the properties.  The changes do show up in the xamDataGrid, but not immediately; I either have to focus in and out of the cell that was changed, or change a column's filter, or scroll the row out and then back into view.  It seems the cell's value is not updating until it is forced to.

Is there a way that I can force the changes to show up immediately?  Even sending a NotifyPropertyChanged event on the ObservableCollection object that the grid is bound to does not have any effect.