DynamicListBase and WPF lost exception

DynamicListBase and WPF lost exception

Old forum URL: forums.lhotka.net/forums/t/9978.aspx


Kevin Fairclough posted on Tuesday, January 25, 2011

We are trying to use the DynamicListBase stereotype with WPF view model bound to a listbox.  In the view model we are manually calling Model.Remove and passing it our selected item.  This works when the factory doesn't throw an exception, however if the factory raises an exception then we have no way of seeing that exception in the UI.  The OnError is never called on the view model and a try-catch around the Model.Remove(SelectedItem) never gets hit.

Any ideas on how to handle the exceptions in this case.

Regards

Kevin

 

 

RockfordLhotka replied on Tuesday, January 25, 2011

The fetch factory throws an exception, and OnError isn't invoked?

Is this a sync or async factory? If it is a sync factory you may need a try..catch around the DoRefresh call, otherwise OnError should surely be invoked.

Kevin Fairclough replied on Wednesday, January 26, 2011

The fetch factory works ok as expected.

This is a DynamicListBase object and I'm calling Model.Remove(SelectedItem) via a delete action in the UI which directly calls the DataPortal (probably asynchronously).  If this fails in the ObjectFactory there is no exception back on the client.  OnError is not invoked and I cannot try...catch around it. 

 

 

 

Kevin Fairclough replied on Wednesday, January 26, 2011

We have tried hooking up to the Saved event on the SelectedItem; SelectedItem.Saved += (s,e) => { ...e.Error is null here }  This gets called on return from the data portal but e.Error is null.

We have tried hooking up Model.Saved event in the view model: Model.Saved += (s,e) => { e.Error is correct here}  this works.  However this would suggest a problem somewhere because the Error property on the view model itself is null.

Edit: Also tried DoRemove(SelectedItem) in the view model, no exception

 

RockfordLhotka replied on Wednesday, January 26, 2011

I see. I think this is a mismatch between ViewModelBase and DynamicListBase. Not necessarily a bug either, just a side-effect of the way things work.

DLB doesn't ever get saved itself, and the object saving infrastructure in VMB is all around saving the root object. So the viewmodel's OnSaved and OnError methods (for example) relate to the saving of the root object, which never happens with a DLB.

So I think when your model is a DLB, you'll need to write your own code in the viewmodel to handle the Model.Saved event. If you want, you could set the VMB Error property because its setter is protected.

Kevin Fairclough replied on Thursday, January 27, 2011

It still seems a little odd however because we are wiring up the Saved on the Model which is the DLB not the individual items of the collection.

Kevin Fairclough replied on Thursday, January 27, 2011

We are also having problems with visual binding.  It seems that OnModelChanged is only ever called on population, not when adding/deleting/editing the items, this screws up our UI.  We are using Caliburn but I don't think this is affecting the situation as its our Model that is bound to the listbox.

The only solution we can find that behaves correctly is on the Model.Saved to clear the ItemsSource.

 

var _itemSource = lb.ItemsSource as IList;
                                   lb.ItemsSource = null;
                                   lb.ItemsSource = _itemSource;

I don't think this ViewModelBase can be used easily with DLB stereotype Sad.
Kevin

 

RockfordLhotka replied on Thursday, January 27, 2011

That is possible. The ViewModelBase class was designed around BB and BLB, with support for ROB and ROLB.

DLB is a very different construct, with very different behaviors. And at the time we wrote this code Microsoft didn't have a WPF datagrid control that actually worked with any rich collection. I don't know if they've fixed all the issues or not. The last time I tried using it most things did seem to work, but I didn't build out a comprehensive scenario.

The thing you should ask, is what VMB is getting you. It exists to manage a single root (object or list). That's it. DLB is not that.

So the only thing VMB can give you then is DoRefresh and BeginRefresh behaviors - which are nice, but not all that critical.

My apps typically have a mix of viewmodel types that subclass ViewModel<T> and DependencyObject depending on whether I actually need anything that is in VMB. If I don't need what it offers, I don't subclass VMB.

Copyright (c) Marimer LLC