how to set word limit to phone number box in the sign-in system and also how to add a password to 8 digit limit.
There are many posts in community, just use search
2 Likes
Thats quiet easy, you get a on text changed block in the textbox, use that with a if then condition,
On text changed, if length (textbox.text) > 10 then call notifier to show alert, number can’t exceed 10 characters, please try again else do nothing
And you are done !!
Thanks
1 Like
The most simple way is to use If then condition if text length is more don’t proceed else proceed.
1 Like