FooterRow Visibility In GridView

  • Thread starter Thread starter Microsoft News Group
  • Start date Start date
M

Microsoft News Group

I am trying to control the visibilty of the footerrow, but having little
luck. I am currently at this.

if (e.CommandName == "Update")

{


PropertyGridView.FooterRow.Visible = true;

}

if(e.CommandName == "Edit")

{


PropertyGridView.FooterRow.Visible = false;

}



But I also have tried it in every event the gridview has with no avail. I
want the footer to dissappear in edit mode, but to reappear on update or
cancel. Any clue on how to make this work. The footer contains my add row
function.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top