Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/11/2009, 04:48
Avatar de mdavila
mdavila
 
Fecha de Ingreso: julio-2007
Ubicación: Montevideo (Uruguay)
Mensajes: 919
Antigüedad: 17 años, 5 meses
Puntos: 13
Respuesta: GridView ShowFooter

Hola, en el evento RowCreated de la grilla podes hacerlo si.

Protected Sub TuGrilla_RowCreated(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles TuGrilla.RowCreated
Dim itemType As ListItemType

'aca verificas que sea el footer, te pongo un ejemplo de cambiar el color de la celda cuando haces mouseover pero podes hacer lo que quieras.
If e.Row.RowType = DataControlRowType.Footer Then

e.Row.BackColor = Color.FromName("#EEEEEE")

If (itemType <> ListItemType.AlternatingItem) Then
e.Row.Attributes.Add("OnMouseOver", "this.style.backgroundColor = 'Gainsboro';")
e.Row.Attributes.Add("OnMouseOut", "this.style.backgroundColor = '#EEEEEE';")
Else
e.Row.Attributes.Add("OnMouseOver", "this.style.backgroundColor = 'Gainsboro';")
e.Row.Attributes.Add("OnMouseOut", "this.style.backgroundColor = '#EEEEEE';")
End If
End If

End Sub
__________________
Marcelo Davila.

:. En Ignorante te conviertes al no preguntar, el que pregunta se nutre... :.