greshnik / yii2-grid-sort-column
Bootstrap Grid Sort Column Widget for Yii2
Installs: 243
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Type:yii2-extension
Requires
- yiisoft/yii2: ~2.0.0
- yiisoft/yii2-bootstrap: ~2.0.3
README
Installation
The preferred way to install this extension is through composer.
Either run
composer require greshnik/yii2-grid-sort-column "*"
or add
"greshnik/yii2-grid-sort-column" : "*"
to the require section of your application's composer.json
file.
Usage
Example
<?= GridView::widget([
'dataProvider' => $dataProvider,
'filterModel' => $searchModel,
'columns' => [
['class' => 'yii\grid\SerialColumn'],
'id',
'name',
'class',
['class' => 'yii\grid\ActionColumn'],
['class' => 'app\gridSortColumn\SortColumn']
],
]); ?>
Example add sort action in controller
public function actions()
{
return [
'swap' => [
'class' => 'app\gridSortColumn\Swap',
'model' => new Mark,
'attribute' => 'sortAttribute'
]
];
}
Example add behavior in model
public function behaviors()
{
return [
'sort' => [
'class' => 'app\gridSortColumn\SortBehavior',
'attribute' => 'sort'
]
];
}
License
The BSD License (BSD). Please see License File for more information.