alisherdavronov/yii2-grid-sort-column-enh

Bootstrap Grid Sort Column Enhanced Widget for Yii2 based on greshnik/yii2-grid-sort-column

dev-master 2016-01-24 15:53 UTC

This package is not auto-updated.

Last update: 2024-05-15 15:56:04 UTC


README

based on greshnik/yii2-grid-sort-column

Installation

The preferred way to install this extension is through composer.

Either run

composer require alisherdavronov/yii2-grid-sort-column-enh "*"

or add

"alisherdavronov/yii2-grid-sort-column-enh" : "*"

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\gridSortColumnEnh\SortColumn'],
    ],
]); ?>

Example add sort action in controller

public function actions()
{
    return [
        'swap' => [
            'class' => 'app\gridSortColumnEnh\Swap',
            'model' => new Mark,
            'attribute' => 'sortAttribute',
        ]
    ];
}

Example add behavior in model

public function behaviors()
{
    return [
        'sort' => [
            'class' => 'app\gridSortColumnEnh\SortBehavior',
            'attribute' => 'sort',
            'parentAttribute' => 'parentId', // optional
        ]
    ];
}

License

The BSD License (BSD). Please see License File for more information.