Page 1 of 1

Required with Min Char

Posted: 2020-08-28 16:28
by dharbitindy
Hello,

I'm looking for a way to require a minimum number of characters in a required field. For instance, I have a text field that is required to have information typed into it, but anyone can just type the letter A into it for example and the field will be satisfied. I know that I cannot force someone to put meaningful sentences in the field, but at least I can force a minimum amount of characters perhaps. Any ideas would be appreciated.

Thank you,
David

Re: Required with Min Char

Posted: 2020-08-28 18:01
by jsetzer
Code

Code: Select all

// file: hooks/TABLENAME-dv.js
$j("#FIELDNAME").attr("minlength", 3).attr("required", "required");
On save *

chrome_6Xlqgb0DRG.png
chrome_6Xlqgb0DRG.png (8.71 KiB) Viewed 9001 times

* Should be localized automatically

Re: Required with Min Char

Posted: 2020-08-31 16:16
by dharbitindy
That is awesome Jan. Thank you!

David

SOLVED: Required with Min Char

Posted: 2020-08-31 17:35
by jsetzer
Great, thx!