Use EventConsole.razor, got error
Error: Microsoft.JSInterop.JSException: Could not find 'scrollToBottom' ('scrollToBottom' was undefined).
What is the proper way to use EventConsole?
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
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>