Class: BetweenValidator

sogv.BetweenValidator

The field under validation must have a size between the given min and max.

Strings, numerics, arrays and dates are evaluated in the same fashion as the size rule.

new sogv.BetweenValidator (data, options, optionRules, lang, internal)

Create a new Validator.

Name Type Description
data * The data which needs to be validated.
options Object The setting options
optionRules Object The validation rules for setting options.
lang String The language used by the application. Default: "en".
internal Boolean If this parameter is true, it means, that validation called from core.
Properties:
Name Type Description
alias Array

The aliases for the current validator.

They could be used in the short validation format.

Defined aliases: ['between'].

options Object The description of the required options.
Example
var validator = new sogv.BetweenValidator(data);
if (false === validator.isValid()) {
     validator.errors().first();
}

Extends

Members

data * inherited

Data that needs to be validated.

lang String inherited

Language of error messages.

max Integer

This option is the "max" count value. Validation will fail if the given collection elements count is greater than this max value.

This option is required when the min option is not defined.

min Integer

This option is the "min" count value. Validation will fail if the given collection elements count is less than this min value.

This option is required when the max option is not defined.

Methods

errors ()sogv.Error inherited

Return error errors

Returns:
Type Description
sogv.Error Error messages

isValid ()Boolean inherited overrides

Check if data valid.

Returns:
Type Description
Boolean Validation status