CuppaLabs / angular2-multiselect-dropdown

Angular 2 Dropdown Multiselect
https://cuppalabs.github.io/angular2-multiselect-dropdown
MIT License
280 stars 257 forks source link

angular2multislect tooltip #628

Open spartan221098 opened 1 year ago

spartan221098 commented 1 year ago

How we can use the tooltip in angular2multiselect dropdown?

Hugo221989 commented 1 week ago

Hi,

I guess you are trying to use a tooltip in the options of the select. Here there is a code that works perfectly:

`<angular2-multiselect [data]="usersSelectList" [(ngModel)]="selectedUsers" [settings]="dropdownSettings" (onDeSelect)="onDropDownUsersClose($event)" (onDeSelectAll)="onDropDownUsersClose($event)" (onClose)="onDropDownUsersClose($event)">

                      </angular2-multiselect>`

As you can see you have to customize the options part with the label <c-item>. I hope anyone find this helpful.