GridView.php
809 Bytes
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
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace thread\widgets\grid\kartik;
use kartik\grid\GridView as kGridView;
/**
* Class GridView
*
* @package backend\components\grid\kartik
* @author FilamentV <vortex.filament@gmail.com>
* @copyright (c) 2015, VipDesign
*/
class GridView extends kGridView
{
/**
* @var string
*/
public $id = 'grid';
/**
* @var bool
*/
public $export = false;
/**
* @var bool
*/
public $bootstrap = true;
/**
* @var bool
*/
public $responsive = true;
/**
* @var bool
*/
public $hover = true;
/**
* @var bool
*/
public $toolbar = false;
/**
* @var array
*/
public $panel = [
'type' => GridView::TYPE_DEFAULT,
'before' => '',
'footer' => false,
];
}