hi!
I need to be able to add records to a grid (via the "add new" row at the bottom), but in the same time, the grids records should not be updatable.
Any idea how?
Thanks!
Try this: use the InitializeRow event.
if (e.IsTemplateAddRow || e.IsAddRow)
e.Row.Activation = Activation.AllowEdit;
else
e.Row.Activation = Activation.NoEdit;