Donnez vie à vos documents numériques !
 

Répondre à : Format heures

abracadabraPDF Forums PDF – Général Format heures Répondre à : Format heures

#59636
Merlin
Maître des clés

Très utile, en lui ajoutant le plus, le point et l’espace, et en retirant les deux-points, on obtient un champ au format téléphone international :
+33 0.678 91 23 45

Code:
var regxp=/^[0-9.+s]$/;
if (event.willCommit==false)
{
if (event.change.length>0 && regxp.test(event.change)==false)
{
app.beep();
event.rc=false
}
}