我正在尝试在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;
});
});
修改:
以下是使用typeaheadEditable
:http://codepen.io/anon/pen/dMQwaq?editors=1010展示问题的代码集。