Issue
This is html of multiselect-dropdownList
i am using "ng-multiselect-dropdown" but when i select list selected values is shown in input side of dropdown
<div class="multiselect-dropdownList">
<[![ng-multiselect-dropdown][1]][1]
required
name="city"
[placeholder]="'VendorList'"
[data]="designerList"
[settings]="dropdowDesiner"
(onSelect)="onChangeDesignerList($event)"
(onSelectAll)="onChangeDesignerList($event)"
(onDeSelect)="onChangeDesignerList($event)"
(onDropDownClose)="onDropDownClose()"
>
</ng-multiselect-dropdown>
</div>
</div>
Solution
If You are using ng-multiselect-dropdown then all records must be show in input field
You can use css to hide this. eg .ng-select /deep/ select-dropdown .selected { display: none }
Answered By - Satish Gupta

0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.