Hi.
When using the Schedule with the Timeline views, the popup windows are limited to the size of the Schedule.
If i open the calendar or have a EditorTemplate bigger than the default it will not show everything.
I think the popup windows, should not be limited to the Schedule element. They should appear on top of the Schedule element.
I have CSS code to downsize the row heigth...
<style>
.e-schedule .e-timeline-month-view .e-date-header-wrap table col, .e-schedule .e-timeline-month-view .e-content-wrap table col,
.e-schedule .e-timeline-year-view .e-date-header-wrap table col,
.e-schedule .e-timeline-year-view .e-content-wrap table col {
width: 40px !important;
}
.e-schedule .e-timeline-month-view .e-month-header, .e-schedule .e-timeline-month-view .e-work-cells,
.e-schedule .e-timeline-year-view .e-month-header, .e-schedule .e-timeline-year-view .e-work-cells {
height: 58px;
}
</style>
@(Html.EJS().Schedule("Schedule").QuickInfoOnSelectionEnd().Height("100%").Width("100%")//.CellTemplate("#apptemplate")
.EventSettings(e => e.DataSource(d => d.Url(@Url.Action("LoadData","RelogioPonto"))
.CrudUrl(@Url.Action("UpdateData","RelogioPonto")).Adaptor("UrlAdaptor").CrossDomain(true)))
.Views(view =>
{
view.Option(View.TimelineDay).IsSelected(true).Add();
view.Option(View.TimelineWeek).IsSelected(true).Add();
view.Option(View.TimelineWorkWeek).IsSelected(true).Add();
view.Option(View.TimelineMonth).IsSelected(true).Add();
view.Option(View.TimelineYear).IsSelected(true).Add();
})
.Render()
)
Thanks for your answer.
I understand that the height of the parent div affects the height of the Schedule.
But in my case, i need the cells of the Schedule to be square. So i reduced the row height and when i tried to change the month in the calendar popup, i couldn't select other months like the first image shows.
And i will be using a editor template, and it have the same problem. The popup shouldn't be limited to the Schedule size. It should overlap the Schedule component and have the size it normally have.
PS: The first image is in Timeline Day, but it should be in Timeline Month. The problem it only shows the first four months of the year:
Thanks for answering.
The sample you give, does not solve the problem. It only helps to select another month, but the "problem" maintains.
Thanks.
The QuickInfo popup it's working ok.
But the Calendar popup, don't.
If you use the last sample you send me, and i tested in my app too, the calendar popup it's fixed in that position.
It worked ok in your stackblitz by coincidence.
It worked! Thanks.