This question is locked. New answers and comments are not allowed.
I have a grid that is sorted on a column. I'd like to suspend sorting on the grid so that a user can make changes without the grid resorting after every edit, and then resume sorting after the user is done so that the grid sorts correctly based on the updated data. Is this possible? I've tried calling SortDescriptors.SuspendNotifications(), but it seems to have no effect - if I update a cell value after calling this method, the grid will still resort the row after the edit is completed.