Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a gridview with edit and delete buttons on each row. I am trying to change the back color or the fore color of the row in the gridview on which the edit button is clicked.

I am using the Row Editing event .Below is my code, the row editing event is not getting fired when I click the edit button.

  protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
    {
        ClearBackColor();

        GridView1.SelectedIndex = e.NewEditIndex;
        GridView1.SelectedRow.BackColor = System.Drawing.Color.Red;

        //GridViewRow row = GridView1.Rows[e.NewEditIndex];
        //row.ForeColor = Color.DarkGreen;

    }

What could be wrong? Please let me know.

share|improve this question
Share the code from your Page_Load method. – Alison Jul 18 '11 at 19:59
Post your markup. – Tomas Voracek Jul 18 '11 at 20:13

2 Answers

up vote 1 down vote accepted

Check http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowcommand.aspx. You are probably missing CommandName="Edit" on button, so RowEditing will never fire.

share|improve this answer

remove this line : GridView1.SelectedIndex = e.NewEditIndex; right click on gridview, and click properties. Check for "EditRowStyle",expand it, there will be BackColor, choose the color you want, and its done.

share|improve this answer
The event GridView1_Rowediting is not getting fired when I click on the edit button – jackey Jul 18 '11 at 19:42
check updated answer above. – Ovais Khatri Jul 18 '11 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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