PHP code example of paskuale75 / yii2-widget-datatables

1. Go to this page and download the library: Download paskuale75/yii2-widget-datatables library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

paskuale75 / yii2-widget-datatables example snippets


use paskuale75\datatables\DataTables;


    $searchModel = new ModelSearch();
    $dataProvider = $searchModel->search(Yii::$app->request->queryParams);

...
'clientOptions' => [
    "lengthMenu"=> [[20,-1], [20,Yii::t('app',"All")]],
    "info"=>false,
    "responsive"=>true, 
    "dom"=> 'lfTrtip',
    "tableTools"=>[
        //empty for load button assets
    ],
    'buttons'   => ['copy', 'excel', 'pdf'],
],
...

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