cocher tout dans une checkbox.
Salut,
je veux selectionner tout dans une checkbox, j'ai fait ce code mais ca marche pas. Au fait la selection se fait dans une seconde et apres le rechargement de la page elle se decoche.
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
function sel(){
document.form1.historique.checked=true;
document.form1.statuts.checked=true;
document.form1.rcs.checked=true;
document.form1.cin.checked=true;
document.form1.bilan_3.checked=true;
document.form1.bilan_n_1.checked=true;
document.form1.bilan_n.checked=true;
document.form1.situation.checked=true;
document.form1.balance.checked=true;
document.form1.rap_cac.checked=true;
document.form1.commande.checked=true;
document.form1.livraison.checked=true;
document.form1.heures.checked=true;
document.form1.facture.checked=true;
document.form1.releve.checked=true;
document.form1.fac_prof.checked=true;
document.form1.materiel.checked=true;
document.form1.marche.checked=true;
document.form1.cli_nat.checked=true;
document.form1.cli_exp.checked=true;
} |