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
670
InitializeRow not fired on ListChangedType.Reset. Why??
posted

Having a bunch of issues with InitializeRow not be fired at appropriate times that have been logged with the dev team already. But this one is so basic I need some quick guidance:

I bind my UltraGrid to a BindingSource which in turn is bound to a datasource of type BindingList<T> (of objects that implement INotifyPropertyChanged).

 When I raise a PropertyChanged(null / empty) from the objects I expect to get a ListChangedType.Reset event raised in the BindingSource. And I do. What I do not get is any InitializeRow events called in the grid - I expected that I would. I used to in older versions (using .net2 with v7.3).

Any pointers? Like, why does the grid not fire initializerows so when it gets a reset event from the list?

Thanks,
John