HI,
can any option in syncfusion tagging input like material chip-list showing input,
ejs-multiselet showing chip-customization but it is select box i need a tagging input.
<div class="col-sm-12 col-md-6 col-lg-12" fieldHeight>
<ejs-chiplist placeholder="Document Tags" floatLabelType="Auto" id="chip-avatar" enableDelete="true">
<e-chips>
<e-chip text="Anne" leadingIconCss="anne"></e-chip>
<e-chip text="Janet" leadingIconCss="janet"></e-chip>
<e-chip text="Laura" leadingIconCss="laura"></e-chip>
<e-chip text="Margaret" leadingIconCss="margaret"></e-chip>
</e-chips>
</ejs-chiplist>
</div>
<div class="col-sm-12 col-md-6 col-lg-12" fieldHeight>
<mat-form-field class="demo-chip-list">
<mat-chip-list #chipList>
<mat-chip *ngFor="let tag of tags" [selectable]="selectable" [removable]="removable" (removed)="remove(tag)">
{{tag.name}}
<mat-icon matChipRemove *ngIf="removable">cancel</mat-icon>
</mat-chip>
<input placeholder="Document Tags" [matChipInputFor]="chipList" [matChipInputSeparatorKeyCodes]="separatorKeysCodes" [matChipInputAddOnBlur]="addOnBlur" (matChipInputTokenEnd)="add($event)" />
</mat-chip-list>
</mat-form-field>
</div>