We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How we can use the tooltip in angular2multiselect dropdown?
The text was updated successfully, but these errors were encountered:
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)"> <c-item> <ng-template let-item="item"> <label ngbTooltip="{{item?.fullName}}" container="body">{{item?.itemName}}</label> </ng-template> </c-item> </angular2-multiselect>
As you can see you have to customize the options part with the label <c-item>. I hope anyone find this helpful.
<c-item>
Sorry, something went wrong.
No branches or pull requests
How we can use the tooltip in angular2multiselect dropdown?
The text was updated successfully, but these errors were encountered: