Results 75 comments of Casey Holzer

I definitely want to support Bootstrap 5 and offer a version without jQuery as a dependency. I've already begun removing jQuery code and replacing it with native JS where possible....

I've been absolutely swamped with work as of late, but I'm hoping to get back into continuing maintenance of bootstrap-select very soon. My priorities are: 1. Finalize #899. Or, at...

With v1.14.0-beta released, I think I might start work on supporting Bootstrap 5 prior to dropping jQuery as that will most likely require more of an overhaul. While not ideal,...

Bootstrap 5 support has been added in [v1.14.0-beta2](https://github.com/snapappointments/bootstrap-select/releases/tag/v1.14.0-beta2)! jQuery is still required.

@NicolasCARPi I'm still working on resolving #2659. It seems there are still some issues with that functionality. Hoping to get it sorted out soon, though. I'm definitely excited to test...

Ah, this is happening because Popper is autopositioning the menu (regardless of dropup settings). Setting `data-display="static"` on your select element (in addition to `data-dropup-auto="false"`) should prevent this from happening.

Note to self: check into setting `data-flip="false"` on the dropdown button.

Will figure out a workaround, but this should be a lot easier in v2.0.0 with MutationObserver (#1360).

Hoping to make this available in an upcoming update, but @giero's solution is the best method for now.

For anybody who truly needs this right now, replace these lines here: https://github.com/silviomoreto/bootstrap-select/blob/master/js/bootstrap-select.js#L957-L965 with ``` javascript this.$menu.on('click', 'li.divider, li.dropdown-header', function (e) { e.preventDefault(); e.stopPropagation(); if (that.multiple && $(e.currentTarget).hasClass('dropdown-header')) { var...