I use the yii tokeninput plugin Yii tokeninput for autocomplete. If I use it on the page, its css works, but if I use it in fancybox, then css is not applied.
Controller code
echo $this->renderPartial('profile/_user_message',array('model'=>$saveMessage),false,true);Yii::app()->end();
Code view
<?php $prePopulate = null; $processPrePopulate = false; if($prePopulate) $processPrePopulate = true; $this->widget('ext.tokeninput.TokenInput', array( 'model' => $model, 'attribute' => 'TARGET_USER_IDS', 'url'=>$this->createUrl('user/search'), 'options' => array( 'allowCreation' => false, 'preventDuplicates' => true,
source share