Bulk actions extension for yii 2 gridview
The preferred way to install this extension is through composer., (*1)
Either run, (*2)
php composer.phar require --prefer-dist webvimark/grid-bulk-actions "*"
or add, (*3)
"webvimark/grid-bulk-actions": "*"
to the require section of your composer.json
file., (*4)
If input in GridView, (*5)
use webvimark\extensions\GridBulkActions\GridBulkActions; 'user-grid', 'actions'=>[ Url::to(['bulk-activate', 'attribute'=>'status'])=>GridBulkActions::t('app', 'Activate'), Url::to(['bulk-deactivate', 'attribute'=>'status'])=>GridBulkActions::t('app', 'Deactivate'), '----'=>[ Url::to(['bulk-delete'])=>GridBulkActions::t('app', 'Delete'), ], ], ]) ?>