While working on a form I used the ftLimitMin option for a longchar ftType however it doesn’t appear to work. What I was expecting was formtools wouldn’t allow the form to be submitted because the minimum about of text hadn’t been entered.
When I turn debugging on I noticed it generating:
TypeError: $.validator is undefined
In core/packages/formtools/longchar.cfc on line 151 is
So I tried changing $.validator to $j.validator and the error stopped however it still doesn’t force a minimum amount of text to be entered. Is this not how this should work?
According to the docs, “rangelength” is the name of the rule but the code looks like it says “rangeLength” with a capital “L”, can you try making that lower case and see if that fixes it?
I changed it to all lowercase and confirmed in the source view that I was now using the changed code but nope, no difference. Allows the field to contain empty value even though there is a min length set.
Justin, I set the ftLimitMin to “2” and just noticed that if I try to submit the form with nothing in the field it submits when it shouldn’t. However if I enter a single character in the field, I get a validation warning that I must enter a value between 2 and 1000 characters.
I didn’t end up changing it to lower case because that looks like it’s just a class name, it should be fine to stay as is – the rule name itself was already lower case.
Thanks Justin and Blair. ftValidation was required to make it kind of work however now what I have just noticed is that if I type a single character into the editor the counter doesn’t go up. If I type in 2 characters the counter says 1. Maybe something wrong with the way it is working out how much text is in the field that was screwing up the validation?
If I type in abc the counter says “2”. Hit backspace to remove the ‘c’ and the counter goes to 3. Hit the backspace 2 more times (so all text is now removed) and it says 1. Hit backspace OR press any arrow key and it goes to 0. I’ve double checked to make sure there isn’t a space or something I couldn’t see in the field but there isn’t anything.