-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathSortableGridView.php
42 lines (36 loc) · 957 Bytes
/
SortableGridView.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* @link https://github.com/himiklab/yii2-sortable-grid-view-widget
* @copyright Copyright (c) 2014-2017 HimikLab
* @license http://opensource.org/licenses/MIT MIT
*/
namespace himiklab\sortablegrid;
use yii\helpers\Url;
use yii\grid\GridView;
/**
* Sortable version of Yii2 GridView widget.
*
* @author HimikLab
* @package himiklab\sortablegrid
*/
class SortableGridView extends GridView
{
/** @var string|array Sort action */
public $sortableAction = ['sort'];
public function init()
{
parent::init();
$this->sortableAction = Url::to($this->sortableAction);
}
public function run()
{
$this->registerWidget();
parent::run();
}
protected function registerWidget()
{
$view = $this->getView();
$view->registerJs("jQuery('#{$this->options['id']}').SortableGridView('{$this->sortableAction}');");
SortableGridAsset::register($view);
}
}