nerburish / yii2-match-height-view
ListView widget improved to use Jquery Match Height (https://github.com/liabru/jquery-match-height)
Installs: 134
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- bower-asset/matchheight: ~0.7.0
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2020-01-02 20:22:33 UTC
README
http://nerburish.com/yii2-matchheight-listview-widget/ en 🇪🇸
ListView widget improved to use Jquery MatchHeight.js (http://brm.io/jquery-match-height/)
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist nerburish/yii2-match-height-view "dev-master"
or add
"nerburish/yii2-match-height-view": "dev-master"
to the require section of your composer.json
file.
Usage
The usage is similar to default ListView Widget (http://www.yiiframework.com/doc-2.0/yii-widgets-listview.html)
You just need a dataProvider and prepare the item template for your model.
In clientOptions you can pass the MatchHeight.js options to modify the plugin behavior (see https://github.com/liabru/jquery-match-height#options)
You can also attach a cssFile for styling the grid.
Exemple:
We have this model:
class MyModel extends \yii\base\Theme
{
public $id;
public $title;
public $description;
}
And this item template named _item.php:
<h3><?= $model->title ?></h3>
<p><?= $model->description ?></p>
Then in our view, we run the widget:
<?php echo \nerburish\matchheight\MatchHeightView::widget([
'dataProvider' => $dataProvider,
'itemView' => '_item',
'cssFile' => [
"@web/css/grid-demo.css"
]
]) ?>
The css used for the demo:
/* ---- grid ---- */
.grid {
box-sizing: border-box;
}
/* clearfix */
.grid:after {
content: '';
display: block;
clear: both;
}
/* ---- grid-item ---- */
.grid-item {
width: 24%;
padding: 10px;
margin: 0.5%;
float: left;
background: #e4e4e4;
border-radius: 5px;
}
You may also be interested in Masonry.js ListView widget: https://github.com/nerburish/yii2-masonry-view