This is a migrated thread and some comments may be shown as answers.

how to add new record in grid

1 Answer 66 Views
Grid
This is a migrated thread and some comments may be shown as answers.
ARUN RAJA
Top achievements
Rank 1
ARUN RAJA asked on 14 Jul 2010, 09:00 AM
hi
  how to add new record in grid,for example add the row to the grid and make another row available to enter another record

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 14 Jul 2010, 10:07 AM
Hello Arun,

The following demo shows how to perform automatic insert/update/delete operation in radgrid.
Automatic Operations


And adding the following code in ItemInserted event will help you to remain the insertform opened, even after clicking "Insert" button.
protected void RadGrid1_ItemInserted(object source, GridInsertedEventArgs e)
    {
        e.KeepInInsertMode = true;
    }


-Shinu.
Tags
Grid
Asked by
ARUN RAJA
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or