this is my gridview. I want to send key and textinput to controller for send value again to another gridview in same page.
'columns' => [
[
'class' => 'yii\grid\CheckboxColumn',
'checkboxOptions' => function($model) {
return ['value' => $model->m_id, 'data' => ['key' => $model->m_id]];
}
],
'm_name',
[
'label' => 'จำนวน',
'value' => function(){
return Html::textInput('od_amount', null, ['id' => 'od_amount']);
},
'format' => 'raw'
],
<?php
$this->registerJs('
$("#btn-add-group").click(function(){
var id_cases = $("#gridview-id").yiiGridView("getSelectedRows");
?>