sanyisasha / yii2-columnlistview
Installs: 46
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Type:yii2-package
Requires
- php: >=5.6
- yiisoft/yii2: ^2.0
This package is auto-updated.
Last update: 2024-10-14 03:56:25 UTC
README
This package let you to display a ListView
like widget, but with Bootstrap's Grid System.
Need Yii2 2.* version and PHP 5.* or higher to work.
Install:
composer require sanyisasha/yii2-columnlistview:dev-master
How to use:
use sanyisasha\yii2\columnlistview\widgets\ColumnListView; ... <?= ColumnListView::widget([ 'dataProvider' => $dataProvider, // ActiveDataProvider 'columns' => 4, // Number of columns, eg 4 'itemView' => '_item', // The itemView, same as in ListView 'options' => [ // Parent from ListView widget 'class' => 'items-container', // The main container what contains the whole *layout* (eg. pagination) ], 'itemOptions' => [ // Parent from ListView widget // The <div class="col-..."> item ], 'rowOptions' => [ // Only with this package // The <div class="row..."> item ], ]); ?>
Feel free to open an issue if you find something.
Author
Molnár Sándor molnar.sandor@wwdh.hu
Links
Packagist: https://packagist.org/packages/sanyisasha/yii2-columnlistview