You can create a simple text box, and when the user clicks, you will see a list of checkboxes
<div id="listOfDays"> <span><?php echo Yii::t('frontend','CHOOSE_DAY'); ?> </span> </div> <div id="itemslistOfDays" style="display:none;position:absolute;z-index:10;background-color:white; width:300px"> <?php echo $form->checkBoxList($model, 'freq_details', array( '1'=>Yii::t('frontend','MONDAY'), '2'=>Yii::t('frontend','TUESDAY'), '3'=>Yii::t('frontend','WEDNESDAY'), '4'=>Yii::t('frontend','THURSDAY'), '5'=>Yii::t('frontend','FRIDAY'), '6'=>Yii::t('frontend','SATURDAY'), '7'=>Yii::t('frontend','SUNDAY'), )); ?> </div>
You will need to write javascript or jquery to hide, show and link click event
source share