我们已经从TabStrip的父组件中加载了子组件
<kendo-tabstrip-tab [title]="'ChildComponent'">
<ng-template kendoTabContent *loadOnDemand>
<app-component></app-component>
</ng-template>
</kendo-tabstrip-tab>
它运行完美,没有任何问题,但是,我们正在尝试在子组件内添加一个剑道窗口
<kendo-window title="Please provide additional data" *ngIf="opened" (close)="close()" [minWidth]="450" [top]="100" [width]="680" [draggable]="false">
<p>This is sample content</p>
</kendo-window>
窗口打开没有问题,但是内容根本没有出现。我们从直接路径加载了ChildComponent,它可以正常工作。
任何解决方案/建议请使Window在Tabstrip的childcomponent内部工作吗?