我在使用 yii tokeninput 扩展时遇到问题。当我搜索名称时,它会给出用户列表,并且如果我选择任何名称,并且如果在所选项目之后的光标点之前还选择了该名称,它不会指向输入框中所有项目的末尾。
我正在使用这个配置。
$this->widget('ext.tokeninput.TokenInput', array(
'model' => $model,
'attribute' => 'USER_ID',
'url'=>$this->createUrl('user/searchUserNames'),
'options' => array(
'allowCreation' => false,
'preventDuplicates' => true,
// 'resultsFormatter' => 'js:function(item){ return “<li><p>” + item.name + “</p></li>” }',
'theme' => 'facebook',
//'hintText' => 'Type',
'prePopulate' => $prePopulate,
'processPrePopulate' => $processPrePopulate,
)
));
我也查看了示例,但没有找到解决方案。谁能帮我 ? Loopj:jquery 令牌输入演示