EventConsole Could not find 'scrollToBottom'

Use EventConsole.razor, got error

 Error: Microsoft.JSInterop.JSException: Could not find 'scrollToBottom' ('scrollToBottom' was undefined).

What is the proper way to use EventConsole?

This is a custom component used in our demos and the entire code is available here:

scrollToBottom is executed for console ElementReference


1 Like

I had to make a js file with the scrollToBottom function and include it on the wwwroot/index.html.

custom.js file

function scrollToBottom() {
    window.scrollTo(0, document.body.scrollHeight);
}

index.html

<script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>
<script src="js/custom.js"></script>