Is there some kind of property on the RadGridView that will make it scroll to the bottom of the list when a new record is added? I'm binding the "ItemsSource" to an ObservableCollection. Then, in my ViewModel, I'm adding rows. I'd like the grid to scroll to the bottom automatically, rather than requiring me to add the record and then execute a "ScrollToEnd" on the "GridViewScrollViewer". If there is no such property, what would be the best event to tie into to make this happen (i.e. so that I could contain this code to the View rather than contaminate my ViewModel)? Yes, I could also add an event handler to the CollectionChanged of the ObservableCollection, but that that feels redundant somehow. (Also, from my testing, it leaves the grid one row behind, since it fires before the row is actually rendered to the grid.)
Thanks!
Brad.