Jump to content

Bloquear uma celula da datagrid


gregurs

Recommended Posts

Eu costumo fazer isso no evento RowDataBound da datagrid

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e){
   if (e.Row.RowType == DataControlRowType.DataRow)
   {
       if (e.Row.Cells[0].Text.Equals("Manual"))
              ((Button)e.Row.Cells[1].Controls[0]).Enabled=false;
   }
}

Cumprimentos,

Sérgio Pinto

Edited by sergiopinto
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.