Hi
Project blazor wasm, version 19.4.0.56
I have one issue with SfSchedule
Please check my 2 images
Cause
1) When I change window size to small width tool bar icons work fine.
2) When I change to large size, button icons are not shown
Please help
My source code :
<SfSchedule @ref="@ScheduleObj"
TValue="AppointmentSortData"
EnableAutoRowHeight="true"
AllowDragAndDrop="false"
AllowMultiCellSelection="false"
AllowMultiRowSelection="false"
AllowResizing="false"
ShowTimeIndicator="true"
ShowWeekend="true"
ShowWeekNumber="true"
@bind-SelectedDate="@CurrentDate"
@bind-CurrentView="@SelectedView">
<ScheduleEventSettings EnableMaxHeight="true"
EnableIndicator="true"
EnableTooltip="true"
SortBy="RankId"
AllowDeleting="false"
AllowEditing="false"
DataSource="@DataSource">
<TooltipTemplate>
@{
var eData = (context as AppointmentSortData);
<div class="tooltip-wrap">
<div class="content-area">
<div class="name">Tarea: @eData.Id</div>
<div class="name">Asunto: @eData.Subject</div>
<div class="name">Estatus: @eData.Estatus</div>
<div class="time">Inicio : @eData.StartTime</div>
<div class="time">Asignados: @eData.Asignados</div>
<div class="time">Transcurrido: @eData.Transcurrido</div>
</div>
</div>
}
</TooltipTemplate>
</ScheduleEventSettings>
<ScheduleEvents TValue="WEBAPI.Shared.AppointmentSortData"
OnCellClick="OnCellClick"
OnPopupOpen="OnPopupOpen"
EventRendered="OnEventRendered"
MoreEventsClicked="@OnMoreEventsClicked"
OnEventClick="OnEventClick">
</ScheduleEvents>
<ScheduleViews>
<ScheduleView Option="View.Month"></ScheduleView>
<ScheduleView Option="View.Year"></ScheduleView>
<ScheduleView Option="View.TimelineYear"></ScheduleView>
</ScheduleViews>
</SfSchedule>
Attachment:
sample_error_94201f9a.rar