abracadabraPDF › Forums › PDF – Général › Obtenir un nombre entier (arrondi) dans un champ › Répondre à : Obtenir un nombre entier (arrondi) dans un champ
6 février 2017 à 18:56
#62217
bebarth
Maître des clés
bonjour,
A mettre en script de validation du champ B :
Code:
if(this.event.value > this.getField(“champA”).value) {
app.alert({cMsg:”Vous en avez trop demandé !”, nIcon:2});
this.event.value=””;
this.getField(“champB”).setFocus();
}
app.alert({cMsg:”Vous en avez trop demandé !”, nIcon:2});
this.event.value=””;
this.getField(“champB”).setFocus();
}
@+
:bonjour: