I am using angular 6 and ng-bootstrap, if I set the [destroyOnHide]=false attribute on the ngb-tabset component each tab entry renders simultanously:
<ngb-tabset #tabs="ngbTabset" [activeId]="activeIdString" [destroyOnHide]="false">
<ngb-tab id="vesssel" title="Vessel Details">
<ng-template ngbTabContent >
Test one
</ng-template>
</ngb-tab>
<ngb-tab id="installation" title="Installation" >
<ng-template ngbTabContent>
Test Two
</ng-template>
</ngb-tab>
</ngb-tabset>
causes both contents to render. The tabs still display and toggle but the content is constant.
Test one
Test Two
If I remove the [destroyOnHide] attribute the tabs function correctly.
Bootstrap version "@ng-bootstrap/ng-bootstrap": "^2.2.1" Angular version "@angular/common": "^6.1.0",