Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
727 views

WPF DataGrid calls BeginEnd on an IEditableObject two times?

I've got a DataGrid bound to a collection of IEditableObject's. Now when I click two times in a cell, it will be opened for editing. Funny thing is: BeginEnd will be called two times. Sometimes for ...
3
votes
3answers
950 views

IEditableObject in MVVM

Can you think of a scenario where IEditableObject would be still usefull in an MVVM-based WPF application? If so, do you have an example that demonstrates this.
3
votes
1answer
236 views

What is the type of object added by IEditableCollectionView?

Adding objects with the IEditableCollectionView addNew() method is pretty decent. However I'm not sure how well it works with my generic code I have. I have a ObservableCollection of my base class. ...
1
vote
1answer
183 views

Silverlight MVVM IEditableObject Dialog

I am playing around with the BookShelf demo application by John Papa. And would like to make some adjustments in how a book item is edited. In that application both the BookView and the EditBookWindow ...
1
vote
1answer
234 views

Creating a generic method to cache an entity

I'm implementing the IEditableObject interface and I want to make a generic method that will know how to clone the object before BeginEdit(). I thought about reflection to iterate all public ...
1
vote
1answer
762 views

Read-only DataGridView and IEditableObject

Good evening I've got a little problem with my DataGridView in a .NET Windows Forms project. The grid is read-only and bound to a sortable BindingList<T> which contains custom business objects. ...
0
votes
1answer
226 views

Silverlight DataForm, MVVM, IEditable object and custom EditTemplate. How to go about custom dirty state checking

I have an interesting problem with the Silverlight DataForm and child collections. I've also got a solution that works but it feels like a hack (it is a hack) and I was wondering if anyone had a more ...
0
votes
0answers
50 views

Defining all models with an interface to help with repository pattern and editing

I'm using Dependency Injection and a repository pattern. I'm also using a IEditableObject interface on my ViewModels (A MVVM term but this is not bound specifically to MVVM). I will be using a ...
0
votes
0answers
70 views

Copy method throws error “Item has already been added. Key in dictionary” in Nettiers method while calling BeginEdit() of IEditableObject

When my BeingEdit() method gets triggered for my Nettiers entity, it calls copy method to copy all its children. The children collection is heavy with so many of them. Inside copy() method, it ...
0
votes
1answer
402 views

How to prevent CurrencyManager from calling BeginEdit()/EndEdit() methods for bound objects

I've got a form with several textboxes and one datagrid. One business entity can be bound to this form. For example, BO looks like this: class BO : IEditableObject, INotifyPropertyChanged { public ...
0
votes
1answer
370 views

WPF: What could cause a DataGrid to call IEditableObject.BeginEdit/EndEdit but never IEditableObject.CancelEdit

When I start editing my grid IEditableObject.BeginEdit. And if I leave then IEditableObject.EndEdit is called. However, if I press Escape then IEditableObject.CancelEdit doesn't get called. This was ...
0
votes
1answer
696 views

WPF: Is it possible to call BeginEdit (IEditableObject) automatically when the binding source is updated?

I have a class that implements IEditableObject and now I'm wondering if it's possible to call BeginEdit() automatically when the source of the binding is updated? There are two possible scenarios: ...
0
votes
3answers
758 views

How do I make IEditableObject.EndEdit atomic?

If I have an Address object which implements IEditableObject, I might have EndEdit implementation like this: public void EndEdit() { // BeginEdit would set _editInProgress and update *Editing ...
0
votes
1answer
212 views

How do I make IEditableObject.EndEdit atomic?

If I have an Address class that implements IEditableObject, I might have EndEdit implementation like this: public void EndEdit() { // BeginEdit would have set _editInProgress and save to *Editing ...