javascript - Bootstrap validator doesn't work in bootstrap modal ( the modal is inside a table) -
my javascript code :
$(".category_form").bootstrapvalidator({ feedbackicons: { valid: 'glyphicon glyphicon-ok', invalid: 'glyphicon glyphicon-remove', validating: 'glyphicon glyphicon-refresh' }, fields: { category_valid: { validators: { notempty: { message: "this field required", } } }, category_name: { validators: { notempty: { message: "this field required", } } }, } });
html here php : here html php
Comments
Post a Comment