
var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "phone_number", {validateOn:["blur"]});
var sprytextfield6 = new Spry.Widget.ValidationTextField("sprytextfield6", "mobile_number", {validateOn:["blur"]});
to:
var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "phone_number", {validateOn:["blur"], useCharacterMasking:true});
var sprytextfield6 = new Spry.Widget.ValidationTextField("sprytextfield6", "phone_number", {validateOn:["blur"], useCharacterMasking:true});

Thank-you. This is coming along nicely.
Hopefully this is my last question.
I have two phone fields, phone and mobile phone.
Both of these fields are required by the user, but I would like the mobile phone not to be a requirement. This field stills need to be a spry, for if somebody does fill this out it follows the mask that is in place. Does anybody know how to set this to "not required"?
Many Thanks Team!