Final Class: DateTimeRangeValidator

Oracle® JavaScript Extension Toolkit (JET)
16.0.0

F83701-01

Since:
  • 0.6.0
Module:
  • ojvalidator-datetimerange

QuickNav

Description

Constructs a DateTimeRangeValidator that ensures the value provided is within a given range.


Usage

Signature:

final class DateTimeRangeValidator implements Validator<string>

Typescript Import Format
//This class is exported directly as module. To import it
import DateTimeRangeValidator= require("ojs/ojvalidator-datetimerange");

For additional information visit:


Final classes in JET

Classes in JET are generally final and do not support subclassing. At the moment, final is not enforced. However, this will likely change in an upcoming JET release.


See:
  • oj.AsyncDateTimeRangeValidator

Constructor

new DateTimeRangeValidator(options)

Constructs a DateTimeRangeValidator that ensures the value provided is within a given range.
Parameters:
Name Type Argument Description
options oj.DateTimeRangeValidator.ValidatorOptions <optional>
an object literal used to provide the following properties
See:
  • oj.AsyncDateTimeRangeValidator

Methods

getHint : {string|null}

A message to be used as hint.
Returns:

a hint message or null if no hint is available in the options

Type
string | null

validate(value) : {void}

Validates the minimum + maximum conditions
Parameters:
Name Type Description
value string that is being validated
Throws:
when there is no match
Type
Error
Returns:
Type
void

Type Definitions

ValidatorOptions

Properties:
Name Type Argument Description
converter oj.DateTimeConverter an instance implementation of oj.DateTimeConverter (i.e. oj.IntlDateTimeConverter). In order to compare isoString value with the timeZone options in the converter, it is necessary for the validator that a converter is passed in.
hint Object <optional>
an optional object literal of hints to be used. If not set, defaults will be used for the validator hint. See the individual hint properties below for details.
Properties
Name Type Argument Description
inRange string <optional>
a hint used to indicate the allowed range. When not present, the default hint is the resource defined with the key oj-validator.range.datetime.hint.inRange.

Tokens:
{min} the minimum
{max} the maximum

Usage:
Enter a datetime between {min} and {max}

max string <optional>
a hint used to indicate the allowed maximum. When not present, the default hint is the resource defined with the key oj-validator.range.datetime.hint.max.

Tokens:
{max} - the maximum

Usage:
Enter a datetime less than or equal to {max}

min string <optional>
a hint used to indicate the allowed minimum. When not present, the default hint is the resource defined with the key oj-validator.range.datetime.hint.min.

Tokens:
{min} the minimum

Usage:
Enter a datetime greater than or equal to {min}

max string <optional>
the maximum datetime value of the entered value. Should be ISOString.
messageDetail Object <optional>
an optional object literal of custom error messages to be used.
Properties
Name Type Argument Description
rangeOverflow string <optional>
the detail error message to be used when input value exceeds the maximum value set. When not present, the default detail message is the resource defined with the key oj-validator.range.datetime.messagedetail.rangeOverflow.

Tokens:
{value} - value entered by the user
{max} - the maximum allowed value

Usage:
Entered {value} with max being {max}

rangeUnderflow string <optional>
the detail error message to be used when input value is less than the set minimum value. When not present, the default detail message is the resource defined with the key oj-validator.range.datetime.messagedetail.rangeUnderflow.

Tokens:
{value} - value entered by the user
{min} - the minimum allowed value

Usage:
Entered {value} with min being {min}

messageSummary Object <optional>
optional object literal of custom error summary message to be used.
Properties
Name Type Argument Description
rangeOverflow string <optional>
the summary of the error message when input value exceeds the maximum value set. When not present, the default message summary is the resource defined with the key oj-validator.range.datetime.messageSummary.rangeOverflow.
rangeUnderflow string <optional>
the summary of the error message when input value is less than the set minimum value. When not present, the default message summary is the resource defined with the key oj-validator.range.datetime.messageSummary.rangeUnderflow.
min string <optional>
the minimum datetime value of the entered value. Should be ISOString.
translationKey string <optional>
an optional string for the default messages + hints. Note that this is required only when the validator is used standlone (i.e. if one uses min + max attribute for ojInputDate the validator will have this already be set to correct "date" value)
  • "datetime"
  • "date"
  • "time"