I am trying to use Manual selection of tabs. It works in template.
Manual selection of tabs does not works when we use it inside Modals.
I want manual selection of tabs to work in modals
ngx-bootstrap:3.1.3
@hellodpk try this:
(click)="selectTab(staticTabs, 1)selectTab(staticTabs: TabsetComponent, tabId: number) {
staticTabs.tabs[tabId].active = true;
}
It works for me. I hope does for you too.
@MilaLys, above fix worked. Thanks
Most helpful comment
@hellodpk try this:
(click)="selectTab(staticTabs, 1)It works for me. I hope does for you too.