Error ocurr in Blazor WASM (.net6) using RadzenBlazor 3.14

I copy the scheduler code from online examples to A Blazor WASM app without hosted in .net server app
and the following run time errors occurred.


You need to add the JavaScript for Radzen Blazor components as well - refer to our getting started.

I have follow the steps for Radzen Blazor components.

and the index.html listed as follows:

Planner
Loading...
<div id="blazor-error-ui">
    An unhandled error has occurred.
    <a href="" class="reload">Reload</a>
    <a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>

You might need to clear your browser cache as well

The scrollToBottom function is defined in _Host.cshtml and you are probably missing it.

1 Like

Yes, you right !

Thanks!