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

Set radgrid in insert mode

1 Answer 240 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Savyo
Top achievements
Rank 1
Savyo asked on 27 Nov 2012, 12:11 PM
Hello
     I have to put the radgrid in insert mode on external button click. How can I accomplish this. Can anybody help.

thanks n regards
Savyo

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 27 Nov 2012, 12:14 PM
Hi,

Please try the following coed snippet to set RadGrid in insert mode on External Button click.

C#:
protected void button1_Click(object sender, EventArgs e)
{
        RadGrid1.MasterTableView.IsItemInserted = true;
        RadGrid1.MasterTableView.Rebind();
}

Thanks,
Princy.
Tags
Grid
Asked by
Savyo
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or