1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
<script type="text/javascript">
function active(obj)
{
if (obj.selectedIndex == 'Trou')
{
obj.form.HEURE_DEBUT.disabled = '';
obj.form.HEURE_DEBUT.focus();
obj.form.HEURE_FIN.disabled = '';
obj.form.HEURE_FIN.focus();
obj.form.CONSTAT.disabled = '';
obj.form.CONSTAT.focus();
obj.form.DEMANDE.disabled = '';
obj.form.DEMANDE.focus();
obj.form.CAUSE.disabled = '';
obj.form.CAUSE.focus();
obj.form.IMPUTATION.disabled = '';
obj.form.IMPUTATION.focus();
}
if (obj.selectedIndex == 'Autre')
{
obj.form.CONSTAT.disabled = '';
obj.form.CONSTAT.focus();
obj.form.CAUSE.disabled = '';
obj.form.CAUSE.focus();
obj.form.IMPUTATION.disabled = '';
obj.form.IMPUTATION.focus();
}
}
</script> |