ngbPopover will not close and will open on load
问题 I want to show the popover once the page load or without trigerring the button and will never close I'm using ngbPopover in Angular. <button placement="left" (click)="openQuestionnaire()" [ngbPopover]="popContent" >0/4</button> using the reference here : https://ng-bootstrap.github.io/#/components/popover/examples 回答1: You have to add this property to your button: [autoClose]="false" Then your button would look like this: <button placement="left" (click)="openQuestionnaire()" [ngbPopover]=