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?
Discussion posts and replies are publicly visible
a!localVariables( local!text, a!textField( value: local!text, saveInto: local!text, validations: if( len(local!text)<3, "Enter minimum 3 characters", "" ) ) )
Thank you! I also found documentation about it, I was using length() function thats why it wasn't working.
Thank you!