abracadabraPDF › Forums › PDF – Général › Format heures › Répondre à : Format heures
24 septembre 2015 à 09:07
#59636

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
}
}
if (event.willCommit==false)
{
if (event.change.length>0 && regxp.test(event.change)==false)
{
app.beep();
event.rc=false
}
}