Scheduler in ASP.NET CORE 6 MVC has incorrect rendering

I have the code below that shows a blazor scheduler in asp.net core 6. There is a startup.cs because it is migrated from asp.net core 5. The scrolling is not working, but I confirm everything is fine in versions of Syncfusion's Blazor Scheduler that are older than 22.*.


Attachment: TestNet6_c0a6880c.zip

1 Reply

MG Mugilraj Govindarajan Syncfusion Team September 19, 2023 06:52 AM UTC

Hi Desmond,

We have checked your shared sample and let you know that, you missed adding script references to your project. Kindly update the script reference in _Layout.cshtml file and let us know if you need further assistance.

Ug: https://blazor.syncfusion.com/documentation/common/adding-script-references#refer-script-from-static-web-assets


[Views/Shared/_Layout.cshtml]

    <script src="~/lib/jquery/dist/jquery.min.js"></script>

    <script src="~/lib/bootstrap/dist/js/bootstrap.bundle.min.js"></script>

    <script src="~/js/site.js" asp-append-version="true"></script>

    <script src="_content/Syncfusion.Blazor.Core/scripts/syncfusion-blazor.min.js" type="text/javascript"></script>

    @await RenderSectionAsync("Scripts", required: false)

  

    <script src="_framework/blazor.server.js"></script>


Regards,

Mugilraj G


Attachment: sample_16ef016d.zip

Loader.
Up arrow icon