rangelength( range )Returns: Boolean
Description: Makes the element require a given value range.
-
rangelength( range )
-
rangeType: ArrayValue range required
-
Return false if the element is
- some kind of text input and its length is too short or too long
- a set of checkboxes that doesn't have enough, or has too many boxes checked
- a select that doesn't have enough, or has too many options selected
Works with text inputs, selects and checkboxes.
Example:
Makes "field" required and between 2 and 6 characters long.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
|