Sortable modification of Kartik GridView widget., (*1)
, (*2)
Installation
The preferred way to install this extension is through composer., (*3)
php composer.phar require --prefer-dist "naduvko/yii2-sortable-grid-view-widget" "*"
or add, (*4)
"naduvko/yii2-sortable-grid-view-widget" : "*"
to the require
section of your application's composer.json
file., (*5)
-
Add to your database new unsigned int
attribute, such sortOrder
., (*6)
-
Add new behavior in the AR model, for example:, (*7)
use naduvko\sortablegrid\SortableGridBehavior;
public function behaviors()
{
return [
'sort' => [
'class' => SortableGridBehavior::className(),
'sortableAttribute' => 'sortOrder'
],
];
}
- Add action in the controller, for example:
use naduvko\sortablegrid\SortableGridAction;
public function actions()
{
return [
'sort' => [
'class' => SortableGridAction::className(),
'modelName' => Model::className(),
],
];
}
Usage
- Use SortableGridView as standard GridView with
sortableAction
option.
You can also subscribe to the JS event 'sortableSuccess' generated widget after a successful sorting.