Yii2 Components - Data tables

Data tables

DataTable is inherited from yii\grid\GridView. It is used to display data using MDC data table.
vip9008\MDC\components\DataTable

Usage

A basic usage looks like the following:

<?php
echo DataTable::widget([
    'dataProvider' => $dataProvider,
    'columns' => [
        'name',
        'id',
        'created_at:datetime',
    ],
]);
?>

The above code will render a data table like the following:

Name ID Created at
Virginia Fahey
1
Jul 9, 1999, 11:58:14 PM
Judah Morissette
2
Sep 21, 1989, 9:32:34 PM
Odell Rutherford
3
Jun 8, 2014, 4:28:56 AM

Customization options

Data table can be further customized by adding a header and action buttons.

<?php
echo DataTable::widget([
    'dataProvider' => $dataProvider,
    [
        'title' => 'Customers list',
        // Alternative header title configuration
        // 'title' => [
        //     'content' => 'Customers list',
        //     'options' => [...], HTML attributes for header title
        // ],
        'actions' => [
            '<button class="material-icon">filter_list</button>',
            '<button class="material-icon">more_vert</button>',
        ],
        // 'options' => [...], HTML attributes for table header container
    ],
    'columns' => [
        'id',
        'name',
        'created_at:datetime',
    ],
]);
?>
Customers list
ID Name Created at
1
Dwight Schuppe
Jun 1, 1996, 6:40:42 AM
2
Alexandro Schaden
Dec 30, 1992, 5:26:52 PM
3
Miss Nya Turner V
Apr 9, 1973, 9:45:15 PM

Other options are inherited from the parent class. see yii\grid\GridView.