You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here i'm populating the mdl-layout-tab-panel dynamically from the api data, after binding the data the mdl-layout-tab-active-index="0" doesn't seems to be applied. here my code
I'm not sure this is a bug in the panel. please help me if there is any way to get the tabs selected.
<div *ngIf="ObjList">
<mdl-layout mdl-layout-fixed-header mdl-layout-header-seamed mdl-ripple mdl-layout-tab-active-index="0">
<mdl-layout-header>
<header-component [Title]="HeaderTitle"></header-component>
</mdl-layout-header>
<mdl-layout-content>
<mdl-layout-tab-panel *ngFor="let r of ObjList" mdl-layout-tab-panel-title="{{r.Name}}">
<div style="height: 100%; width: 100%; position: absolute">
<!-- Some binding of object "r.Details" -->
</div>
</mdl-layout-tab-panel>
</mdl-layout-content>
</mdl-layout>
</div>
Here i'm populating the mdl-layout-tab-panel dynamically from the api data, after binding the data the mdl-layout-tab-active-index="0" doesn't seems to be applied. here my code
I'm not sure this is a bug in the panel. please help me if there is any way to get the tabs selected.
The text was updated successfully, but these errors were encountered: