Ver Mensaje Individual
  #1 (permalink)  
Antiguo 02/02/2010, 20:40
Javier2010
 
Fecha de Ingreso: febrero-2010
Mensajes: 1
Antigüedad: 15 años, 2 meses
Puntos: 0
Ayuda con GridView

Hola, tengo una gridview en el que selecciono cuaquier fila con una imagen.
Ademas utilizo un codigo para resaltar y pasar datos:

protected void grid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes.Add("OnMouseOver", "Resaltar(this); this.style.cursor='pointer';");//pointer en vez de hand
e.Row.Attributes.Add("OnMouseOut", "NoResaltar(this);");

e.Row.Cells[1].Attributes["onclick"] = Page.ClientScript.GetPostBackClientHyperlink(this. grid, "Select$" + e.Row.RowIndex.ToString());
e.Row.Cells[2].Attributes["onclick"] = Page.ClientScript.GetPostBackClientHyperlink(this. grid, "Select$" + e.Row.RowIndex.ToString());
e.Row.Cells[3].Attributes["onclick"] = Page.ClientScript.GetPostBackClientHyperlink(this. grid, "Select$" + e.Row.RowIndex.ToString());
}
}

Mi duda es la siguiente:

Quisiera que cuando haga click en un Boton : "Nuevo", las filas del grid se deshabiliten, es decir que no se pueda hacer click y no se resalte.(algo asi como grid.enable=false).

Hago un codigo por filas: row.enable= false ; pero igual se sigue resaltando y funcionando el onclick.

Espero su ayuda.