Select all / Unselect all in Bootstrap Select plugin

后端 未结 8 2108
渐次进展
渐次进展 2021-01-02 03:34

                        
    
提交评论

  • 2021-01-02 04:25

    It has been answered but i found a better way of doing.

    Just add data-actions-box="true" as attributes of the select tag.

    Eg.

    <label>Select/deselect all</label>
    <select class="selectpicker form-control" data-style="btn-outline-warning" multiple data-actions-box="true">
        <optgroup label="Condiments">
            <option>Mustard</option>
            <option>Ketchup</option>
            <option>Relish</option>
        </optgroup>
        <optgroup label="Breads">
            <option>Plain</option>
            <option>Steamed</option>
            <option>Toasted</option>
        </optgroup>
    </select>
    
    
    0 讨论(0)
  • 提交回复
    热议问题