fedemotta / yii2-widget-datatables

DataTables widget for Yii2
MIT License
35 stars 28 forks source link

CheckboxColumn #13

Open lugaru90 opened 8 years ago

lugaru90 commented 8 years ago

Does not work with ['class' => 'yii\grid\CheckboxColumn']. yiigridview is not defined

knowbe4-harper commented 6 years ago

'columns' => [ [ 'class' => 'yii\grid\CheckboxColumn', 'checkboxOptions' => function ($model) { return [ 'value' => $model->id, ]; }, ],

Getting an error when trying to add a CheckboxColumn:

Uncaught TypeError: jQuery(...).yiiGridView is not a function

atmanegara commented 6 years ago

i'm fix, modify DataTablesBootstrapAsset.php and add yii.gridview.js (from vendor > yiisoft > yii2 > assets) move to datatables-bootstrap3 > BS3 > assets > js 3

paskuale75 commented 3 years ago

Has no one found a cleaner solution ?

paskuale75 commented 3 years ago

[solved] In view : use yii\grid\GridViewAsset;

and call this : GridViewAsset::register($this);