How can I get the selected data/item rows in CheckboxColumn Gridview - Yii2
问题 I have a problem on getting all the selected values/data Yii2 Gridview using checkboxColumn. I can only get one of the value in the grid using this code: 'class' => 'yii\grid\CheckboxColumn', 'checkboxOptions' => function($model, $key, $index, $widget) { return ['value' => $model['item_id'] ]; }, Need some suggestions on how can I get all the values in the grid... Here is my Code Code snippet Controller/View: Controller: public function actionBulk(){ $action=Yii::$app->request->post('action')