How To Checked Some Checkbox At Cgridview?


$this->widget('ext.selgridview.BootSelGridView', array(

    'id' => 'menu-grid',

    

    'dataProvider' => $model->search(),

    'type' => 'striped bordered condensed',

    'selectableRows' => 2,

    'columns' => array(

        array(

            'id' => 'selectedIds',

            'name'=>'id',

            'class' => 'CCheckBoxColumn',

            'value'=>$model->id,

            'checked'=>'id',

            'checkBoxHtmlOptions'=>array('checked'=>'3'),

        ),

        array(

            'header' => 'S/N',

            'class' => 'CounterColumn'),

        'name',))

I apriciate any help

I got the solution from the following link

Pre checked checkbox in gridview

I sure this will help others