mbenford / ngTagsInput

Tags input directive for AngularJS

Home Page:http://mbenford.github.io/ngTagsInput

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

allow-dblclick-to-edit not working in ng-repeat

narensingh008 opened this issue · comments

Here is my code.

<div ng-repeat="row in ui.data.Lables.Options"> <tags-input ng-id="{{row.LableID}}" ng-model="row.Tags" add-on-enter="true" allow-dblclick-to-edit="true" min-length="0" placeholder="[L:Addatag]" display-property="Tag" on-tag-added="addTag($tag, row)" on-tag-removed="removeLable($tag, row)" input-split-pattern="\s|,"> </tags-input> </div>