<div class="row">
<div class="floatleft" style="width:110px;"><?php echo CHtml::label('TO :','',array('class'=>'label_name',));?></div>
<div class="floatleft"><?php $this->widget('application.extensions.tokeninput.TokenInput', array(
'model' => $model,
'attribute'=>'TO',
'id'=>'TO',
'url' => $this->createUrl('User/autocomplete'),
'options' => $arrOptions
)
); ?></div>
$arrOptions['allowCreation'] = true;
$arrOptions['preventDuplicates'] = true;
$arrOptions['resultsFormatter'] ='js:function(item){
return "<li><p>" + item.name + "</p></li>"
}';
$arrOptions['theme'] = 'facebook';
我有一个用户名列表的令牌输入,当一个类型的名称不存在我想显示“未找到结果”时,我知道我必须更改resultsFormatter
,但我不知道如何检查现有数据与术语项目?