我正在使用 yii tokeninput 插件Yii tokeninput进行自动完成。如果我在页面上使用它,它的 css 正在应用,但如果我在fancybox 中使用它,则 css 不适用。
控制器代码
echo $this->renderPartial('profile/_user_message',array('model'=>$saveMessage),false,true);Yii::app()->end();
查看代码
<?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,
// 'resultsFormatter' => 'js:function(item){ return “<li><p>” + item.name + “</p></li>” }',
'theme' => 'facebook',
'prePopulate' => $prePopulate,
'processPrePopulate' => $processPrePopulate,
)
)); ?>