Rank: Newbie Groups: Member
Joined: 1/16/2011 Posts: 5
|
I am using the following code
EO.Web.GridItem newItem = Grid1.CreateItem(); Grid1.Items.Add(newItem);
On submit of form AddedItems list is 0. All deleted items are available.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
AddedItems won't track items that you added on the server side. It only tracks items added on the client side. The primary purpose of the AddedItems is for you to populate the changes made on the client side into your back end database. When you are already adding items through your own code, you are already aware of which items have been added so you can update your database immediately without relying on AddedItems.
Thanks!
|