fedemotta/yii2-bootstrap-list-filter

Bootstap list filter widget for Yii2

v1.1 2016-09-10 15:34 UTC

This package is not auto-updated.

Last update: 2024-04-23 01:19:32 UTC


README

Bootstrap list filter widget for Yii2

Latest Stable Version Total Downloads Latest Unstable Version License

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist fedemotta/yii2-bootstrap-list-filter "*"

or add

"fedemotta/yii2-bootstrap-list-filter": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<form role="form">
    <div class="form-group">
    <?=\fedemotta\bootstraplistfilter\BootstrapListFilter::widget(['list_selector'=>'#searchlist','options'=>['class'=>'form-control', 'placeholder'=>'Search...'], 'clientOptions'=>['itemChild'=>'span']]); ?>
    </div>
    <div id="searchlist" class="list-group">
        <a class="list-group-item" href="aquamarine.html"><span>aquamarine</span></a>
        <a class="list-group-item" href="blue.html"><span>blue</span></a>
        <a class="list-group-item" href="cyan.html"><span>cyan</span></a>
    </div>
</form>