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


