Bootstrap-Select Is Not Working with Bootstrap 5
I Followed the Getting Started Guide from Their Official Webpage I Added the Js and Css Libraries to My Project and It Does Not Work. for Some Reason...
I followed the Getting Started guide from their official webpage
I added the JS and CSS libraries to my project and it does not work.
For some reason selectpicker is set to display: none!important:
.bootstrap-select>select.bs-select-hidden, select.bs-select-hidden, select.selectpicker {
display: none!important;
}
And I am getting this error:
Caused by this JS:
<script src=""></script>
What I've tried:
- Even if I change the code to
display: blockbootstrap-select it is still not working. - Changing the order of the imports as suggested in another SO question
I already checked this previous SO question and I changed the order of the imports but still, it is not working.
1 Answer
Solved, apparently the version I was using is not compatible with BS5
What I did:
script src=""></script>
Use version 1.14.0-beta2 instead of 1.13.14