1

我在使用 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 “&lt;li><p>” + item.name + “&lt;/p></li>” }',
           'theme' => 'facebook',
            //'hintText' => 'Type',
            'prePopulate' => $prePopulate,
            'processPrePopulate' => $processPrePopulate,

       )
   ));

我也查看了示例,但没有找到解决方案。谁能帮我 ? Loopj:jquery 令牌输入演示

4

1 回答 1

1
    plz comment the line number 509 in **jquery.tokeninput.js** 
    input_token.insertAfter(found_existing_token);
    that line insert cursor after that selected item so if you comment 
    this line cursor is at the end of all names
于 2012-07-11T13:36:15.307 回答