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

c# - Where does the .ToList() go in LINQ query result -

android - CollapsingToolbarLayout: position the ExpandedText programmatically -

Listeners to visualise results of load test in JMeter -