brunodd
brunodd

Reputation: 2584

selectpicker - show-subtext and data-live-search not working

I am trying to set data-live-search and showSubtext to "true" on selectpicker but it's not working. What am I doing wrong?

<select class="selectpicker" data-show-subtext="true" data-live-search="true">
    <option value="create">Create subtext</option>
    <option value="update" data-subtext="old subtext">Update subtext</option>
    <option value="delete" data-subtext="more subtext">Delete subtext</option>
</select>

$(".selectpicker").selectpicker();

my jsfiddle | selectpicker documentation

Upvotes: 0

Views: 7087

Answers (1)

Laurent
Laurent

Reputation: 1806

You have to fix the link of your bootstrap-select.js.

Upvotes: 2

Related Questions