[ACCEPTED]-Bootstrap Multiselect plugin filter uppercase-multi-select

Accepted answer
Score: 40

I understand that you are talking about 3 lowercase not working when you try to filter 2 the results in your dropdown. Just enable case insensitive filtering & it 1 should work -

$(document).ready(function() {
    $('#example28').multiselect({
        includeSelectAllOption: true,
        enableFiltering: true,
        enableCaseInsensitiveFiltering: true,
        maxHeight: 150
    });
});

Working Example of your code - http://codepen.io/nitishdhar/pen/lHyas

More Related questions