如何使用ng2-tag-input组件的偏移属性?

时间:2017-06-14 08:17:20

标签: html angular

我正在尝试使用ng2-tag-input设计自定义下拉列表。 This是我用来参考的链接。但是,我无法为offset设置TagInputDropdownComponent属性。

有关文档偏移的详细信息:

  

偏移 - [?string]
  偏移量以绝对值调整下拉列表的位置(默认为' 0 0')

这是我的HTML代码:

<tag-input-dropdown [offset]="0 0" [autocompleteObservable]='autocompleteItems$' [identifyBy]="'email'" [displayBy]="'userName'">

但我最终得到以下错误:

  

未处理的承诺拒绝:模板解析错误:   分析器错误:意外的令牌&#39; 0&#39;在[0 0]第3栏的ng:///AppModule/UserComponent.html@2:57

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:0)

来自作者:

https://github.com/Gbuomprisco/ngx-chips/issues/162

你应该这样指定:

<tag-input-dropdown [offset]="'0 0'" [autocompleteObservable]='autocompleteItems$' [identifyBy]="'email'" [displayBy]="'userName'">