I have a list of contacts and for each contact i can add a note. My requirement is- If i open notes popover for 1 contact and then click on 'Add notes' of second contact then only 2nd popover should be open and not both.
I tried to set [autoClose]="'outside'", but then I am not able to apply styles from dropdown menu. enter image description here (I am using tinymce editor)
<a triggers="manual" #notesBox="ngbPopover" [ngbPopover]="notesEditor" [autoClose]="'outside'" popoverTitle='My Note'(click)="notesBox.open()">
Can anyone suggest the solution please