Hallo,
wieso kann man die Buttons in diesem Formular nicht drücken?
Wenn man das letzte Fieldset herausnimmt, geht das Ganze. Wieso nicht mit?
Patrick
wieso kann man die Buttons in diesem Formular nicht drücken?
Code:
<form action="afficherListeClient.php" method="post" name="afficherListe">
<fieldset>
<legend><span>Liste client</span></legend>
<ol>
<li>
<fieldset>
<legend>Afficher</legend>
<ol>
<li>
<input type="radio" id="liste_1" name="liste" value="1" checked/>
<label for="liste_1">Tous</label>
</li>
<li>
<input type="radio" id="liste_2" name="liste" value="2"/>
<label for="liste_2">Sociétés</label>
</li>
<li>
<input type="radio" id="liste_3" name="liste" value="3"/>
<label for="liste_3">Privés</label>
</li>
<li>
<input type="radio" id="liste_4" name="liste" value="4"/>
<label for="liste_4">Immeubles en RF</label>
</li>
</ol>
</fieldset>
</li>
<li>
<fieldset>
<legend>Traîté par</legend>
<ol>
<li>
<input type="radio" id="user_0" name="user" value="Tous" checked/>
<label for="user_0">Tous</label>
</li>
</ol>
</fieldset>
</li>
<li>
<fieldset>
<legend>Ordre</legend>
<ol>
<li>
<input type="radio" id="ordre_1" name="ordre" value="1" checked/>
<label for="ordre_1">ABC</label>
</li>
<li>
<input type="radio" id="ordre_2" name="ordre" value="2"/>
<label for="ordre_2">123</label>
</li>
</ol>
</fieldset>
</li>
<li class="submit">
<input class="submit" type="reset"/><input class="submit" type="submit" value="Afficher" name="btnAfficher"/>
</li>
</ol>
</fieldset>
Patrick