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

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -