Solved
What is the best way to set a minimum number of characters validation for a input text component?
Hi all,
I'm trying to see what is the best way to assign a minimum character number for a text component in a interface?
Hi all,
I'm trying to see what is the best way to assign a minimum character number for a text component in a interface?
a!localVariables(
local!text,
a!textField(
value: local!text,
saveInto: local!text,
validations: if(
len(local!text)<3,
"Enter minimum 3 characters",
""
)
)
)Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.