beatep/yii2-sortable-widgets
最新稳定版本:v2.0.3
Composer 安装命令:
composer require beatep/yii2-sortable-widgets
包简介
Implementation Rubaxa/Sortable for Yii2. Sortable grid view inside.
README 文档
README
Implementation Rubaxa/Sortable for Yii2 widgets. Position starts with 1.
Supported:
- GridView widget.
Usage
Create a new migration, change a parent to the migration class from the extension and specify the table name property:
class m140811_131705_Models_order extends \beatep\sortable\migrations\Migration { protected $tableName = 'models'; }
Add the sortable behavior to your model and specify the query property:
public function behaviors() { return [ 'sortable' => [ 'class' => \beatep\sortable\behaviors\Sortable::className(), 'query' => self::find(), ], ]; }
Add the sorting action to your controller and specify the query property:
public function actions() { return [ 'sorting' => [ 'class' => \beatep\sortable\actions\Sorting::className(), 'query' => \vendor\namespace\Model::find(), ], ]; }
Add the column to your grid view and specify the sorting url like here:
echo \yii\grid\GridView::widget([ 'dataProvider' => $model->search(), 'rowOptions' => function ($model, $key, $index, $grid) { return ['data-sortable-id' => $model->id]; }, 'columns' => [ [ 'class' => \beatep\sortable\grid\Column::className(), ], 'id', 'title', 'order', ], 'options' => [ 'data' => [ 'sortable-widget' => 1, 'sortable-url' => \yii\helpers\Url::toRoute(['sorting']), ] ], ]);
统计信息
- 总下载量: 1.79k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-07-11