wisard17 / yii2-data-table
Yii2框架的DataTable扩展
1.0
2017-05-23 04:00 UTC
Requires
- datatables/datatables: >=1.10
- yiisoft/yii2: >=2.0.6
This package is not auto-updated.
Last update: 2024-09-22 08:17:21 UTC
README
Yii 2 DataTable扩展
为Yii框架2.0提供的扩展,方便使用DataTables。
安装
安装此扩展的最佳方式是通过 composer。
运行以下命令之一:
composer require --prefer-dist wisard17/yii2-data-table
或
"wisard17/yii2-data-table": "~1.0.0"
将以下内容添加到您的 composer.json
文件的require部分。
用法
例如,以下是一段简单的代码
<?= wisard17\DataTableView::widget([ 'columns' => [ 'Customer_ID', 'action', 'Customer_Name', 'Office_Phone', 'Office_Email', ], 'model' => new Model(), ]) ?>