wisard17/yii2-data-table

The DataTable extension for the Yii2 framework

Maintainers

Package info

github.com/wisard17/yii2-data-table

Wiki

Type:yii2-extension

pkg:composer/wisard17/yii2-data-table

Statistics

Installs: 6

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0 2017-05-23 04:00 UTC

This package is not auto-updated.

Last update: 2026-03-08 15:03:17 UTC


README

DataTables Extension for Yii 2


Extension for Yii framework 2.0. to used DataTables easy.

Installation

The preferred way to install this extension is through composer.

Either run

composer require --prefer-dist wisard17/yii2-data-table

or add

"wisard17/yii2-data-table": "~1.0.0"

to the require section of your composer.json file.

Usage

For example, the following is simple code:

<?= wisard17\DataTableView::widget([
    'columns' => [
        'Customer_ID',
        'action',
        'Customer_Name',
        'Office_Phone',
        'Office_Email',
    ],
    'model' => new Model(),
]) ?>