Files
SmartHomePHP/widgets/DataTable.php
2017-03-03 14:36:50 +02:00

18 lines
535 B
PHP

<?php
namespace app\widgets;
use yii\grid\GridView;
class DataTable extends GridView
{
public $tableOptions = ['class' => 'table table-hover material-table'];
public $summary = '<b>{begin}-{end}</b> из <b>{totalCount}</b>';
public $pager = [
'maxButtonCount' => 0,
'nextPageLabel' => '&#xf054;',
'prevPageLabel' => '&#xf053;',
];
public $layout = "<div class=\"table-responsive\">{items}<div class='table-footer'><div class='table-footer-summary'>{summary}</div>{pager}</div></div>";
}