Bootstrap validation not working with bootstrap select -
when apply bootstrap validation on form , have drop downs (select) bootstrap chosen list.
it validates not showing error message validator drop downs.
basically when apply bootstrap dropdown make select list fancy , easy use hides native html select , creates new custom options.
when native drop down hidden hides validation message applying inline css property display:none.
so here quick fix it.
#country { display: block !important; height: 0; margin-top: -14px; visibility: hidden; } by default set display block , set visibility hidden , work magic.
Comments
Post a Comment