Thanks for your quick response.
The problem I have when I put the ejs-schedule on a page inside router-outlet.
For example in "app.component.html":
<div>
<ejs-schedule #schedule height='300px' >
<e-views>
<e-view option="Week"></e-view>
</e-views>
</ejs-schedule>
</div>
<main [@fadeAnimation]="o.isActivated ? o.activatedRoute : ''">
<router-outlet #o="outlet" ></router-outlet>
</main>
On this page, it works well.
But if I put the same in "prueba.component.html":
<div>
<ejs-schedule #schedule height='300px' >
<e-views>
<e-view option="Week"></e-view>
</e-views>
</ejs-schedule>
</div>
It does not work. The popup without height appears.
I await your help.
Thank you.