By default close char is x.
x
you can make tag non-removable by removing x using [removable]="false"
[removable]="false"
you can create editable tag by using [editable]="true" property
[editable]="true"
An input which requires all tags to start with '@' and end with '$'
'@'
'$'
An input which will transform the value of all added tags prepending '@' to the tag using [onAdding]="transform"
[onAdding]="transform"
You can customize this component to allow only Tags accepting only items from an autocomplete
You can autocomplete items using [onAdding]="asyncOnAdding" eg. 'item1'
[onAdding]="asyncOnAdding"
An input which allows adding items by pressing the key "space" of your keyboard
"space"
You can apply bootstrap theme to your tag using [theme]="'bootstrap'"
[theme]="'bootstrap'"
Input tag that allows specific number of tags using [maxItems]
[maxItems]
You can use this advanced feature with [dragZone]
[dragZone]
You can implement this special feature with [onRemoving] and [onAdding]
[onRemoving]
[onAdding]
Customize & Preview in Real Time
Sidebar Width