oclockvn
4/3/2017 - 6:05 AM

bootstrap-validator-form2.js

$('#product-form').bootstrapValidator({
    icons: {
        valid: 'glyphicon glyphicon-ok',
        invalid: 'glyphicon glyphicon-remove',
        validating: 'glyphicon glyphicon-refresh'
    },
    fields: {
        Name: {
            validators: {
                notEmpty: { message: 'Name is required' },
                stringLength: { min: 2, max: 50, message: 'Name must be between 2 and 50 characters length' }
            }
        },
        Price: {},
        Description: {},
        Snippet: {}
    }
});