31 lines
1.3 KiB
Plaintext
31 lines
1.3 KiB
Plaintext
@using EgwCoreLib.Lux.Core.Generic
|
|
|
|
<div style="@schedHeight">
|
|
<RadzenScheduler @ref=@scheduler style="height: 100%;" Culture=@(new System.Globalization.CultureInfo("it-IT"))
|
|
TItem="EventDto" Data="@EvDtoFilt" SelectedIndex="@selectedIndex" Date="@SelDate"
|
|
StartProperty="DtStart" EndProperty="DtEnd" TextProperty="CodTipo"
|
|
SlotRender=@OnSlotRender SlotSelect=@OnSlotSelect TodayText="Oggi"
|
|
AppointmentSelect=@OnAppointmentSelect AppointmentRender=@OnAppointmentRender
|
|
LoadData=OnLoadData>
|
|
<Template Context="EvDTO">
|
|
<div>
|
|
<strong>@EvDTO.CodTipo</strong> | @EvDTO.Abbrev
|
|
</div>
|
|
<small>
|
|
@if (EvDTO.CodTipo == "PERM" || EvDTO.CodTipo == "104")
|
|
{
|
|
@($"{EventDto.DateForm(EvDTO.CodTipo, EvDTO.DtStart)} --> {EventDto.DateForm(EvDTO.CodTipo, EvDTO.DtEnd)}")
|
|
}
|
|
</small>
|
|
</Template>
|
|
<ChildContent>
|
|
<RadzenDayView />
|
|
<RadzenWeekView />
|
|
<RadzenMonthView MaxAppointmentsInSlot="4" />
|
|
<RadzenYearPlannerView StartMonth="Month.January" MaxAppointmentsInSlot="3" />
|
|
<RadzenYearView StartMonth="Month.January" />
|
|
</ChildContent>
|
|
</RadzenScheduler>
|
|
</div>
|
|
|