04/02/2005, 13:55
|
| | | Fecha de Ingreso: febrero-2003 Ubicación: Argentina, Rosario
Mensajes: 585
Antigüedad: 21 años, 9 meses Puntos: 0 | |
como adaptarias:
function checkAll(field) {
for (i = 0; i < field.length; i++)
field[i].checked = true;
}
function uncheckAll(field) {
for (i = 0; i < field.length; i++)
field[i].checked = false;
}
la funcion para seleccionar todos los checkbox y cuando los seleccione a todos tambien se ilumine la fila
__________________ Ignacio |