Topic: Documentation on Tabs incomplete (Angular)

Benny Bottema pro asked 6 years ago


On the page about Tabs Components, the events on per-tab basis are missing:

<mdb-tabset #staticTabs [buttonClass]="'nav-tabs tabs-3 red'" [contentClass]="'card'" (showBsTab)="show($event)" (shownBsTab)="shown($event)" (hideBsTab)="hide($event)" (hiddenBsTab)="hidden($event)">
<!--Panel 1-->
<mdb-tab heading="Profile" (select)="onSelectProfile($event)">
(...)
</mdb-tab>
<!--Panel 2-->
<mdb-tab heading="Follow" (select)="onSelectFollow($event)">
(...)
</mdb-tab>
</mdb-tabset>

Also to programmatically activate a tab:

import { Component } from '@angular/core';

@Component({
selector: 'tabs-component-example',
templateUrl: 'tabs.component.html',
})

export class TabsComponent {

@ViewChild('staticTabs') public staticTabs;

selectProfileTab() {
this.staticTabs.setActiveTab(1);
}

selectFollowTab() {
this.staticTabs.setActiveTab(2);

}
}


Damian Gemza staff answered 6 years ago


Hello, Dear Benny, we're preparing new release of MDB Angular. In next weeks, it will be available for customers. With new update, we will update our documentation for things that you've mentioned about in this post. Thank you very much for your's involvement to our product. Best Regards, Damian

FREE CONSULTATION

Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.

Status

Closed

Specification of the issue

  • ForumUser: Pro
  • Premium support: No
  • Technology: MDB Angular
  • MDB Version: -
  • Device: -
  • Browser: -
  • OS: -
  • Provided sample code: No
  • Provided link: No
Tags