Welcome Guest Search | Active Topics | Sign In | Register

Grid add row dynamically Options
abzil
Posted: Wednesday, June 1, 2011 2:11:42 PM
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.
eo_support
Posted: Wednesday, June 1, 2011 2:14:37 PM
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!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.