Toolbar buttons not working changin window size

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

1 Reply

RM Ruksar Moosa Sait Syncfusion Team April 1, 2022 01:54 PM UTC


Hi Jose,


We have checked the reported problem but we are not able to replicate the issue at our end. Kindly check the attached sample and could you please share more details about the issue?

Graphical user interface, application

Description automatically generated


Regards,

Ruksar Moosa Sait


Attachment: BlazorWebAssemblySample_853f9736.zip

Loader.
Up arrow icon