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

grid validator

Validate a GRId (Global Release Identifier)

Validators

Options

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

Example

<form id="gridForm" class="form-horizontal">
    <div class="form-group">
        <label class="col-xs-3 control-label">GRId</label>
        <div class="col-xs-5">
            <input type="text" class="form-control" name="grid" />
        </div>
    </div>
</form>

<script>
$(document).ready(function() {
    $('#gridForm').formValidation({
        framework: 'bootstrap',
        icon: {
            valid: 'glyphicon glyphicon-ok',
            invalid: 'glyphicon glyphicon-remove',
            validating: 'glyphicon glyphicon-refresh'
        },
        fields: {
            grid: {
                validators: {
                    grid: {
                        message: 'The value is not valid GRId'
                    }
                }
            }
        }
    });
});
</script>
<form id="gridForm" 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">GRid</label>
        <div class="col-xs-5">
            <input type="text" class="form-control" name="grid"
                data-fv-grid="true"
                data-fv-grid-message="The value is not valid GRid" />
        </div>
    </div>
</form>

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

Related validators

The following validators might be useful to you: