Must Be An Integer Checkbox




<div class="checkboxgroup">

     <?php echo $form->labelEx($model,'Diteruskan Kepada'); ?>

     <?php echo CHtml::activeCheckBoxList( $model,'id_penerima',

          CHtml::listData(Jabatan::model()->findAll(),'id_jabatan','jabatan'),		 

	  array(

		'separator'=>'',

		'template'=>'<div>{input}&nbsp;{label}</div>'

	)); ?>

</div>



after submitt button, display this warning


"Please fix the following input errors:

Penerima must be an integer." 

what should i do ??

Seems like you created boolean table field id_penerima and then added some validation rules (maybe using Gii), so that id_penerima can be only int (and activeCheckBoxList gives you an array).

Use forum search to find out how to store many_many relations.