- See:
-
- oj.AsyncRequiredValidator
Constructor
new RequiredValidator(options)
Parameters:
| Name | Type | Argument | Description |
|---|---|---|---|
options |
oj.RequiredValidator.ValidatorOptions |
<optional> |
an object literal used to provide an optional hint and error message.
|
- See:
-
- oj.AsyncRequiredValidator
Methods
-
getHint() : {string|null}
-
A message to be used as hint, when giving a hint on the expected pattern. There is no default hint for this property.
Returns:
a hint message or null if no hint is available in the options- Type
- string | null
-
validate(value) : {void}
-
Validates value to be non-empty
Parameters:
Name Type Description valueObject | string | number that is being validated Throws:
when fails required-ness check- Type
- Error
Returns:
- Type
- void
Type Definitions
-
ValidatorOptions
-
Properties:
Name Type Argument Description hintstring <optional>
an optional hint text. There is no default hint provided by this validator. labelstring <optional>
an optional label text used when the {label} token is passed into messageSummary or messageDetail. messageSummarystring <optional>
an optional custom error message summarizing the error. When not present, the default message summary is the resource defined with the key oj-validator.required.summary.The messageSummary string is passed as the 'pattern' parameter to oj.Translations.html#applyParameters. As stated in that documentation, if you are using a reserved character, you need to escape it with a dollar character ('$').
Tokens: {label} - this token can be used to substitute the label of the component at runtime.Example:
"'{label}' Required"
messageDetailstring <optional>
a custom error message used for creating detail part of message, when the value provided is empty. When not present, the default message detail is the resource defined with the key oj-validator.required.detail.The messageDetail string is passed as the 'pattern' parameter to oj.Translations.html#applyParameters. As stated in that documentation, if you are using a reserved character, you need to escape it with a dollar character ('$').
Tokens: {label} - this token can be used to substitute the label of the component at runtime.
Example:
"A value is required for the field '{label}'."