mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-20 03:11:26 +01:00
18 lines
535 B
PHP
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' => '',
|
|
'prevPageLabel' => '',
|
|
];
|
|
public $layout = "<div class=\"table-responsive\">{items}<div class='table-footer'><div class='table-footer-summary'>{summary}</div>{pager}</div></div>";
|
|
}
|