Table of Contents
AllowNewItem Property

Gets or sets whether the grid allows user to append new items.

Syntax
 public Boolean AllowNewItem { get; set; }
Remarks

When this property is set to true, an empty row is displayed after the last row. User can edit this row and when user submits the changes, this row becomes a regular row and a new empty row is appended to the grid.

Once the page posts back, you can get a list of all added items through AddedItems property. ItemAdded event is also fired for each added item.

See Also