New Posts New Posts RSS Feed: PagedCollectionView and AddNew
  FAQ FAQ  Forum Search   Calendar   Register Register  Login Login

PagedCollectionView and AddNew

 Post Reply Post Reply
Author
zinovate View Drop Down
Newbie
Newbie
Avatar

Joined: 24-Apr-2009
Posts: 9
Post Options Post Options   Quote zinovate Quote  Post ReplyReply Direct Link To This Post Topic: PagedCollectionView and AddNew
    Posted: 18-Nov-2009 at 8:17am
I think your earlier method of catching the CollectionChanged Event is going to be a good route. Testing it now...
Ben
Back to Top
zinovate View Drop Down
Newbie
Newbie
Avatar

Joined: 24-Apr-2009
Posts: 9
Post Options Post Options   Quote zinovate Quote  Post ReplyReply Direct Link To This Post Posted: 18-Nov-2009 at 7:22am
What if you are using the PagedCollection directly? Editing works great but add new items is a challenge.
What is the best practice for adding entities when using the paged view? (and is it not reccomended).
Back to Top
kimj View Drop Down
IdeaBlade
IdeaBlade
Avatar

Joined: 09-May-2007
Posts: 1391
Post Options Post Options   Quote kimj Quote  Post ReplyReply Direct Link To This Post Posted: 26-Aug-2009 at 9:55pm
You call the entity.Create method, it's not something DevForce itself calls, or anything that will be called by an external class during entity construction.   Doing a Create and then a List.Add sounds OK - you're basically taking the AddNew processing away from the PCV.   Since the PCV won't be aware of the new item, you'll also need to ensure that CancelNew and CommitNew processing are handled correctly - or maybe ignored if everything is now an edit of an existing item.
Back to Top
midnit View Drop Down
Senior Member
Senior Member
Avatar

Joined: 22-Jun-2009
Location: Charlotte
Posts: 112
Post Options Post Options   Quote midnit Quote  Post ReplyReply Direct Link To This Post Posted: 26-Aug-2009 at 10:52am
Thank you for the quick reply. Our entity.Create method actually adds itself to the EntityManager so perhaps it wont fit well with this scenario.
 
So...I have gone back to calling .Add on the source List which seems to be working fine. Do you know of any short comings of doing it this way based on the fact that our .Create adds itself to the EntityManager already?
Back to Top
kimj View Drop Down
IdeaBlade
IdeaBlade
Avatar

Joined: 09-May-2007
Posts: 1391
Post Options Post Options   Quote kimj Quote  Post ReplyReply Direct Link To This Post Posted: 26-Aug-2009 at 10:40am
The AddNew() logic in the standard Silverlight PagedCollectionView calls the default constructor for the type, adds the new object to the collection, and then if it's an IEditableObject calls BeginEdit().  Unfortunately, in DevForce we currently require that the entity is already attached to an EntityManager before allowing BeginEdit to proceed.
 
This is a hack, but to work around the problem you can listen for CollectionChanged events on the PCV.  In your handler if the Action is Add you can then add the entity to an EntityManager.  This is taking advantage of the fact that the CollectionChanged event fires before the BeginEdit call.
 
The DevForce PagedCollectionView does do the AddEntity logic for you when AddNew() is called, but the DevForce PCV has some other issues and may not be suitable for you, at least in release 5.2.1.
Back to Top
midnit View Drop Down
Senior Member
Senior Member
Avatar

Joined: 22-Jun-2009
Location: Charlotte
Posts: 112
Post Options Post Options   Quote midnit Quote  Post ReplyReply Direct Link To This Post Posted: 26-Aug-2009 at 8:58am
I was previously using an IList in my VM to bind my grid to. Today I attempted to change things around as I have found I have need to sorting the underlying data from the VM so I created a PagedCollectionView. This worked well until I tried to use .AddNew in which case I got an error stating "Cannot call BeginEdit() on Deleted or Detached entities". Based on the MSDN description of AddNew I expected it to do the same as List.Add(entity) but obviously the mechanics and different.
 
Can you advise me in a solution? Should I use the underlying list to do the add or is there a "proper" way of doing it with the PagedCollectionView. The entities I am trying to "add" have their own .Create method which worked well for the list. I also saw a snippit that you may have implemented an IPagedCollectionView, this is not what I am using. I am using the System.Windows.Data.
 
Thank you for your time,
-Robert
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down