lunes, 3 de agosto de 2015

Ocultar columnas Gridview Sin afectar indice



He tenido constantes preguntas sobre como ocultar las columnas de un gridview sin afectar el orden ni nada por el estilo

Una manera simple y sencilla es realizarlo de esta manera aplicando un poco de css basica

Saludos,

 Protected Sub gvPremio_RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs)

For i As Integer = 0 To e.Row.Cells.Count
            e.Row.Cells(0).Style.Add("display", "none")
        Next

    End Sub


   If e.Row.RowType = DataControlRowType.Header Then
   For i As Integer = 0 To e.Row.Cells.Count
                    e.Row.Cells(5).Style.Add("display", "block")
                Next

     End If