vote up 1 vote down star

How do I put a gridview row in edit mode programmatically?

flag

8% accept rate

2 Answers

vote up 1 vote down

Just implement the Row_Editing event and do something like this:

protected void Row_Editing(object sender, GridViewEditArgs e) { myGridView.EditItemIndex = e.EditItemIndex; BindData(); }

Bind data will populate the GridView with the data.

link|flag
vote up 5 vote down

Set the EditIndex property to the appropriate row and then ReBind the GridVIew again to it's DataSource.

Hope this helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.