define(['ojs/ojasyncvalidator-regexp'], function(AsyncRegExpValidator) {
// Application should call API on AsyncRegExpValidator
})
Typescript Import Format
//This class is exported directly as module. To import it import AsyncRegExpValidator= require("ojs/ojasyncvalidator-regexp");
JET In Typescript
A detailed description of working with JET elements and classes in your typescript project can be found at:
JET Typescript Usage.
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.
Description
Constructs an AsyncRegExpValidator that ensures the value matches the provided pattern.
A message to be used as hint, when giving a hint on the expected pattern. There is no default
hint for this property.
Methods
validate(value: V): Promise<void>
Validates value for matches using the regular expression provided by the pattern. This method
does not raise an error when value is the empty string or null; the method returns a Promise
which resolves indicating that the validation was successful. If the application wants the empty string to fail validation,
then the application should chain in the required validator (e.g., set required on the input).