2017 © Pedro Peláez
 

yii2-extension yii2-widget-datatables

DataTables widget for Yii2

image

faravaghi/yii2-widget-datatables

DataTables widget for Yii2

  • Wednesday, January 18, 2017
  • by faravaghi
  • Repository
  • 1 Watchers
  • 1 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

DataTables widget for Yii2

This extension provides the DataTables integration for the Yii2 framework., (*1)

Latest Stable Version Total Downloads Latest Unstable Version License, (*2)

Installation

The preferred way to install this extension is through composer., (*3)

With Composer installed, you can then install the extension using the following commands:, (*4)

composer global require "fxp/composer-asset-plugin:~1.0.0"
composer require --prefer-dist faravaghi/yii2-widget-datatables "*"

The first command installs the composer asset plugin which allows managing bower and npm package dependencies through Composer. You only need to run this command once for all. The second command installs the datatables widget., (*5)

You can also add (instead of the second command):, (*6)

"faravaghi/yii2-widget-datatables": "*"

to the require section of your composer.json file., (*7)

Usage

Use DataTables as any other other Yii2 widget., (*8)

use faravaghi\datatables\DataTables;
search(Yii::$app->request->queryParams);
?>
= DataTables::widget([
    'dataProvider' => $dataProvider,
    'filterModel' => $searchModel,
    'columns' => [
        ['class' => 'yii\grid\SerialColumn'],

        //columns

        ['class' => 'yii\grid\ActionColumn'],
    ],
]);?>

This extension uses the Bootstrap integration plugin to provide a Yii2 style by default., (*9)

The TableTools plugin is also available. Specify the DOM and the tableTools settings in the clientOptions array as the following example., (*10)

...
'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")
            ],
        ]
    ]
],
...

You can also use DataTables in the JavaScript layer of your application. To achieve this, you need to include DataTables as a dependency of your Asset file. In this case, you could use yii\grid\GridView or using the datatables options retrieve => true to avoid errors. In both case all options must be in the Javascript object., (*11)

public $depends = [
...
'faravaghi\datatables\DataTablesAsset',
...
];

The Versions

18/01 2017

dev-master

9999999-dev

DataTables widget for Yii2

  Sources   Download

MIT

The Requires

  • yiisoft/yii2 *
  • bower-asset/jquery >= 1.7.0
  • bower-asset/datatables >= 1.9.4
  • bower-asset/datatables-bootstrap3 *
  • bower-asset/datatables-tabletools *

 

by Mohammad Ebrahim Amini

extension library yii2 jquery javascript table datatables

18/01 2017

1.0

1.0.0.0

DataTables widget for Yii2

  Sources   Download

MIT

The Requires

  • yiisoft/yii2 *
  • bower-asset/jquery >= 1.7.0
  • bower-asset/datatables >= 1.9.4
  • bower-asset/datatables-bootstrap3 *
  • bower-asset/datatables-tabletools *

 

by Mohammad Ebrahim Amini

extension library yii2 jquery javascript table datatables