1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
function Add(i){
var newRow = document.getElementById('matable').insertRow(-1);
var newCell = newRow.insertCell(0);
$tmp=i;
newCell.innerHTML = " <tr>Dii</tr>";
newCell = newRow.insertCell(1);
newCell.innerHTML = " <tr> R100614015</tr>";
newCell = newRow.insertCell(2);
newCell.innerHTML = '<tr> 125 </tr>';
newCell = newRow.insertCell(3);
newCell.innerHTML = "<td id=essai> <input type=checkbox name='check +$tmp'; onClick='changecolor(this,+$tmp)'; /> Validé </td>";
newCell = newRow.insertCell(4);
newCell.innerHTML = "<td id=boutonEssai> <input type=button onClick='Manquant(+$tmp,this)'; value='Manquant'/> <input type=button onClick='Annuler(+$tmp,this)'; value='Annuler' /> <input type=button value='+' onClick='Add(+$tmp)';/> </td>";
} |