Getting Started
Events

sedol validator

Validate a SEDOL (Stock Exchange Daily Official List)

Options

Using with form field
The HTML attributes are used to set the validator options via the Declarative plugin
Name HTML attribute Type Description
message data-fv-sedol___message String The error message
Using with ES6 module
            
// You might need to change the importing path
import sedol from 'formvalidation/dist/es6/validators/sedol' ;
const result = sedol ( ) . validate ( {
value : ... ,
options : {
message : ... ,
} ,
} ) ;
/*
result is an object of
{
valid: true or false,
message: The error message
}
*/

Basic example

sedol validator

ES6 Module Example

The following snippet shows how to use the sedol validator with ES6 module:
            
// You might need to change the importing path
import sedol from 'formvalidation/dist/es6/validators/sedol' ;
const res1 = sedol ( ) . validate ( {
value : '0263494' ,
options : {
message : 'The value is not valid SEDOL' ,
} ,
} ) ;
// res1.valid === true
const res2 = sedol ( ) . validate ( {
value : 'B0WNLY8' ,
options : {
message : 'The value is not valid SEDOL' ,
} ,
} ) ;
// res2.valid === false

See also