Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/10/2010, 02:25
BORJACONIL
 
Fecha de Ingreso: marzo-2008
Ubicación: Cádiz, España
Mensajes: 89
Antigüedad: 16 años, 1 mes
Puntos: 0
Respuesta: Gridview con columna CheckBoxField

En el evento itemDataBound de tu datagrid puedes manipular tu checkbox de la siguiente manera:

Código PHP:
if ((e.Item.ItemType == ListItemType.Item) || (e.Item.ItemType == ListItemType.AlternatingItem))
        {
            
            ((
CheckBox)e.Item.FindControl("tucheckbox")).enabled=true 
Saludos