javascript - Bootstrap validator doesn't work in bootstrap modal ( the modal is inside a table) -


i using bootstrap3. trying use bootstrap validator forms in bootstrap modal window. modal inside table. have added attributes required validator still not working. please advice.(hover description check out image)

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

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -