Hi,
Can you please help me how to give validation to the Textfield, where it should accept only Alphabets.
If any special characters or numbers entered it should throw an validation error message.
Is there any function is there?
Discussion posts and replies are publicly visible
se puede realizar la validación por medio de expresiones regulares con la función:
a!matchRegex(a!matchRegex( pattern: "^[0-9]{10}$", /* Solo números de 10 dígitos */ value: "3214567890"value: "3214567890"))