Insert/Update/Delete Using Controls API
Insert rows
Two general approaches in adding new rows exist. The first one is to add rows directly into the data source assigned to the grid (see RadGridView data binding). The second approach is to use the Add method of the Rows collection.
Adding rows to the rows collection
Update rows
The data in a row can be updated by assigning the new value to the GridViewCellInfo.Value property. The access to the GridViewCellInfos is through the Cells collection of each row (type GridViewRowInfo).
Before the value is set Validating event is fired. This event could be canceled to prevent updating the value in the cell. After the value update Validated event is fired.
Assigning value to a cell
Delete rows
To delete row call GridViewRowCollection.Remove(GridViewRowInfo value) or GridViewRowCollection.RemoveAt(rowIndex).