Checkboxlist

hi, can u help me to create checkboxlist ??

i want to create checkboxlist in my cActiveFrom …

can u help me to solve my problem ?

please tell me step by step to create checkboxlist

You can use this in your form


<?php 

echo CHtml::activeCheckBoxList($model,'name',array('1'=>'One','2'=>'Two')); 

//OR 

$type_list=CHtml::listData(Types::model()->findAll(),'id','type');

echo CHtml::activeCheckBoxList($model,'name',$type_list); 

?>

See This http://www.bsourcecode.com/2013/03/yii-chtml-checkboxlist/