我的模板中有以下代码
<kendo-tabstrip #tabstrip (tabSelect)="onTabSelect($event)" [animate]="false">
<kendo-tabstrip-tab [title]="'Custom'">
<ng-template kendoTabContent>
<form [formGroup]="customForm">
<kendo-formfield>
<kendo-formerror *ngIf="customForm.get('customTextbox')?.errors"
>Provide valid cron expression (E.g. * * * * 4 )
</kendo-formerror>
<kendo-textbox formControlName="customTextbox" placeholder="provide date expression"></kendo-textbox>
</kendo-formfield>
</form>
</ng-template>
</kendo-tabstrip-tab>
还有其他制表符
并像这样调用这个方法。0索引正是这个自定义选项卡的索引。但是我只看到选择改变了(选项卡图标的样式改变了),但它不显示选项卡的内容。我必须手动点击它才能看到内容。有没有人遇到过类似的问题与keno-tabstrip在角
@ViewChild('tabstrip') public tabstrip: TabStripComponent;
ngAfterViewInit() {
this.tabstrip.selectTab(0)
};
老实说,我从来没有这样选择过制表符。
尝试使用selected
输入。([selected]="true"
).