Subversion Repositories eFlore/Applications.coel-consultation

Compare Revisions

Ignore whitespace Rev 24 → Rev 25

/trunk/squelettes/moteur.tpl.html
1,13 → 1,29
<!-- COL - DEBUT MOTEUR RECHERCHE -->
<script type="text/javascript">
// Function pour cacher / afficher les options de recherche
$(document).ready(function() {
$("#col-rech-opt").hide();
$("#col-rech-opt-toggle").html("Afficher l'aide");
$("#col-rech-opt-toggle").toggle(
function() {
$("#col-rech-opt-toggle").html("Cacher l'aide");
$("#col-rech-opt").toggle("slow");
},
function() {
$("#col-rech-opt-toggle").html("Afficher l'aide");
$("#col-rech-opt").toggle("slow");
}
);
});
</script>
<h2>Rechercher une collection</h2>
<form id="col-form" name="col-form" action="<?=$url_form;?>" method="get">
<input name="module" type="hidden" value="<?=$url_module;?>" />
<input name="action" type="hidden" value="<?=$url_action;?>" />
<fieldset>
<legend>Rechercher</legend>
<input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/>
<input id="col-rech-ok" type="submit" value="OK" />
<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche">Allez à l'aide</a>
</fieldset>
<label id="col-rech"for="recherche">Rechercher</label>
<input id="recherche" name="recherche" type="text" value="<?=$recherche;?>" size="75" maxlength="250"/>
<input id="col-rech-ok" type="submit" value="OK" />
<a id="col-rech-opt-toggle" href="#col-rech-opt-txt" title="Précisions sur les options de recherche">Allez à l'aide</a>
</form>
<div id="col-rech-opt">
<h2 id="col-rech-opt-titre">Options de recherche</h2>
110,4 → 126,5
</tbody>
</table>
</div>
</div>
</div>
<!-- COL - FIN MOTEUR RECHERCHE -->