This site contains the document for old version. Please upgrade to the latest version v1.0.0

sedol validator

Validate a SEDOL (Stock Exchange Daily Official List)

Validators

Options

Option HTML attribute Type Description
message data-fv-sedol-message String The error message
When setting options via HTML attributes, remember to enable the validator by setting data-fv-sedol="true".
The message option can be updated on the fly via the updateMessage() method

Example

SEDOL Result
0263494
B0WNLY7
<form id="sedolForm" class="form-horizontal">
    <div class="form-group">
        <label class="col-xs-3 control-label">SEDOL</label>
        <div class="col-xs-5">
            <input type="text" class="form-control" name="sedol" />
        </div>
    </div>
</form>

<script>
$(document).ready(function() {
    $('#sedolForm').formValidation({
        framework: 'bootstrap',
        icon: {
            valid: 'glyphicon glyphicon-ok',
            invalid: 'glyphicon glyphicon-remove',
            validating: 'glyphicon glyphicon-refresh'
        },
        fields: {
            sedol: {
                validators: {
                    sedol: {
                        message: 'The value is not valid SEDOL'
                    }
                }
            }
        }
    });
});
</script>
<form id="sedolForm" class="form-horizontal"
    data-fv-framework="bootstrap"
    data-fv-icon-valid="glyphicon glyphicon-ok"
    data-fv-icon-invalid="glyphicon glyphicon-remove"
    data-fv-icon-validating="glyphicon glyphicon-refresh">

    <div class="form-group">
        <label class="col-xs-3 control-label">SEDOL</label>
        <div class="col-xs-5">
            <input type="text" class="form-control" name="sedol"
                data-fv-sedol="true"
                data-fv-sedol-message="The value is not valid SEDOL" />
        </div>
    </div>
</form>

<script>
$(document).ready(function() {
    $('#sedolForm').formValidation();
});
</script>

Related validators

The following validators might be useful to you: