16/09/2008, 10:54
|
| | Fecha de Ingreso: febrero-2008
Mensajes: 73
Antigüedad: 16 años, 11 meses Puntos: 0 | |
Respuesta: problema con checkbox's Cita:
Iniciado por David el Grande ¿Podrías decirnos cuál es la función que estás usando para agregar las filas? ¿Con PHP o Javascript?. esta es:
Código:
<script>
function agregaFila( id ) {
var tabla = document.getElementById( id );
var tbody = document.getElementById( tabla.id ).tBodies[0];
var row = tbody.rows[0].cloneNode( true );
var id = 1;
while( document.getElementById( tabla.id+'_fila_'+id ) ) {
id++;
}
row.id = tabla.id+'_fila_'+id;
row.style.display = '';
tbody.appendChild( row );
}
function borraFila( fila ) {
var id = fila.id;
if( fila.parentNode.rows.length <= 2 ) return;
document.getElementById( id ).parentNode.removeChild( document.getElementById(id) );
}
</script>
|