如何为typeaheads自定义angular-bootstrap默认值?

时间:2016-03-15 12:41:08

标签: angularjs angular-ui-bootstrap angular-ui angular-ui-typeahead

我正在尝试在typeaheads上为我的应用程序提供更好的默认值。我使用的是最新版本的angular-bootstrap 1.2.4 1.3.2

到目前为止,我已经尝试装饰指令编译;由于与工具提示相反,angular-bootstrap不提供输入提示。

module.config(function($provide) {
    $provide.decorator('uibTypeaheadDirective', function($delegate) {
        var directive = $delegate[0];
        var link = directive.link;
        directive.compile = function() {
            return function(scope, element, attrs) {
                attrs.typeaheadWaitMs = '2000';
                link.apply(this, arguments);
            };
        };
        return $delegate;
    });
});

修改

以下是使用typeaheadEditablehttp://codepen.io/anon/pen/dMQwaq?editors=1010展示问题的代码集。

0 个答案:

没有答案