Scheduler rendering Appointment issue

I'm experiencing the following issue and would need help solving it.
If I select a slot in the Scheduler I get the list of Appointments in the selected date, but the pop-up dialog is rendered under the table header depending on the number of Appointments and the close button is not reachable. See attached screenshot. I have tried to put the scheduler in z-order: -1, but it's not working.


Any suggestions.

This is my code:

            <RadzenScheduler @ref=@calendar SlotRender=@OnSlotRender TItem="Appointment" Data=@CalendarData StartProperty="DateStart" EndProperty="DateEnd"
                 TextProperty="Title" SelectedIndex="1" Style="height: 768px;z-index:-1 !important"
                 SlotSelect=@OnSlotSelect AppointmentSelect=@OnAppointmentSelect AppointmentRender=@OnAppointmentRender>
                <RadzenMonthView />
                <RadzenYearPlannerView />
                @*<RadzenYearTimelineView />*@
            </RadzenScheduler>

Also, but I know this is a new feature, could it be possible to set the height of the rows in order to display more than 2 items per row in the YearPlannerView.

Thanks in advance

BTW. I just noted that table header is always on top... even on the dropdown menus:

Hi ReneRam. Have you resolved this issue?
I too have the same problem.
Tks.

I had two problems.
For the dropdown going under the days bar as a workaround I change the menu structure.
For the number of rows I was expecting some update from the Radzen team

Ok. My issue is when open a dialog, that show always sidebar and topbar under the dialog as the z-index it where superior of that of dialog.

Sorry. I just did a simple workaround, not very elegant but for me it works fine:

I wrapped the RadzenSchduler inside a

with the required style:

        <div style="position: relative; z-index: 1;">
            <RadzenScheduler @ref=@calendar SlotRender=@OnSlotRender TItem="Appointment" Data=@CalendarData StartProperty="DateStart" EndProperty="DateEnd"
                             TextProperty="Title" SelectedIndex="1" Style="height: 768px;"
                             SlotSelect=@OnSlotSelect AppointmentSelect=@OnAppointmentSelect AppointmentRender=@OnAppointmentRender>
                <RadzenMonthView />
                <RadzenYearPlannerView />
                @*<RadzenYearTimelineView />*@
            </RadzenScheduler>
        </div>

Hope it helps