xinyeweb / yii2-datatables
yii2 Datatables
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- bower-asset/datatables: >= 1.9.4
- bower-asset/datatables-bootstrap3: *
- bower-asset/datatables-tabletools: *
- yiisoft/yii2: ~2.0.0
This package is auto-updated.
Last update: 2024-10-16 19:40:57 UTC
README
yii2 Datatables
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist xinyeweb/yii2-datatables "*"
or add
"xinyeweb/yii2-datatables": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
<?= DataTables::widget([ 'dataProvider' => $dataProvider, 'filterModel' => $searchModel, 'columns' => [ ['class' => 'yii\grid\SerialColumn'], //columns ['class' => 'yii\grid\ActionColumn'], ], ]);?>
Client
'clientOptions' => [ "lengthMenu"=> [[20,-1], [20,Yii::t('app',"All")]], "info"=>false, "responsive"=>true, "dom"=> 'lfTrtip', "tableTools"=>[ "aButtons"=> [ [ "sExtends"=> "copy", "sButtonText"=> Yii::t('app',"Copy to clipboard") ],[ "sExtends"=> "csv", "sButtonText"=> Yii::t('app',"Save to CSV") ],[ "sExtends"=> "xls", "oSelectorOpts"=> ["page"=> 'current'] ],[ "sExtends"=> "pdf", "sButtonText"=> Yii::t('app',"Save to PDF") ],[ "sExtends"=> "print", "sButtonText"=> Yii::t('app',"Print") ], ] ] ],