在焦点选项卡上打开以进行ui-select

时间:2014-12-31 17:22:34

标签: angularjs ui-select

我有一个简单的事情 - 当有人选中我的ui-select时,我希望它自动下拉。不幸的是,当焦点变为ui-select时,ng-focus似乎没有激发。有解决方法吗?

2 个答案:

答案 0 :(得分:1)

如果您正在寻找快速解决方法,请尝试此操作:

app.directive('showOnFocus', function() {
   return {
       restrict: 'A',
       link: function (scope, element) {
           var focused = false, opened = false;
           var select = element.children('.selectize-input');
           var toggleInput = element.find('input')[0];

           var onfocus = function(){
               if(!focused && !opened) {
                  toggleInput.click();
                  opened = focused = true;
               } else if(opened) {
                  opened = false;
               }
           };
           var onhover = function(){
              if(!focused && !opened){
                  toggleInput.click();
                  opened = focused = true;
               };
           };

           var onblur = function(){
              focused = false;
           };
           element.bind('mouseenter', onhover);
           element.bind('click',onblur);
           select.bind('blur', onblur);
           select.bind('focus', onfocus);

           //show on pageload
           onhover(); 
       }
    };
});

在你的ui-select元素中应用指令

<ui-select show-on-focus>..</ui-select>

希望这有帮助。

答案 1 :(得分:0)

showOnFocus指令对我不起作用。我添加了一个额外的输入(隐藏,但不是不可见)变得聚焦,并关闭了ui-select的tabindex。

<custom-directive>
  <input class="custom-focuser" tabindex="0" style="left: 10000px"/>
  <ui-select tabindex="-1"/> 
</custom-directive>

然后在自定义指令的链接函数中,我附加了附加输入的焦点事件。

app.directive('customDirective', function () {
  return {
    // ...
    link: function ($scope, el, attrs, ctrl) {
      el.find('.custom-focuser').focus(function (event) {
        //your custom logic here
      });
    }
  };
});