$this->widget(‘ext.selgridview.SelGridView’, array(
'id'=>'item',
'dataProvider'=>$model->getTotalcount(),
'filter'=>$model,
'selectableRows' => 2,
'columns'=>array(
array(
'name'=>'id',
'value'=>'$data->id',
'class'=>'CCheckBoxColumn',
),
when I submit the above gridview I get only the selected checkbox values. Is there a way to get value ‘0’ for the unchecked rows?
Thankyou