Validators / grid

Edit on Github

Validate a GRId (Global Release Identifier).

Option Equivalent HTML attribute Type Description
message data-bv-grid-message String The error message

Example

GRId Result
A12425GABC1234002M
A1-2425G-ABC1234002-M
A1 2425G ABC1234002 M
Grid:A1-2425G-ABC1234002-M
A1-2425G-ABC1234002-Q
<form id="gridForm" class="form-horizontal">
    <div class="form-group">
        <label class="col-lg-3 control-label">GRId</label>
        <div class="col-lg-5">
            <input type="text" class="form-control" name="grid" />
        </div>
    </div>
</form>
<script>
$(document).ready(function() {
    $('#gridForm').bootstrapValidator({
        feedbackIcons: {
            valid: 'glyphicon glyphicon-ok',
            invalid: 'glyphicon glyphicon-remove',
            validating: 'glyphicon glyphicon-refresh'
        },
        fields: {
            grid: {
                validators: {
                    grid: {
                        message: 'The value is not valid GRId'
                    }
                }
            }
        }
    });
});
</script>

Comments

If you want to report a bug, please submit the issue on Github. Do NOT post the issue here.

For a general question or feedback, use the form below.