New to Telerik UI for BlazorStart a free 30-day trial

JavaScript Errors

Updated on Sep 12, 2025

This page provides solutions for JavaScript errors that you may encounter while working with Telerik UI for Blazor components.

TelerikBlazor was undefined

You may get runtime error messages in the browser console similar to the following:

  • Could not find 'TelerikBlazor.getLocationHost' ('TelerikBlazor' was undefined).
  • Microsoft.JSInterop.JSException: Could not find 'TelerikBlazor' in 'window'.

If you get such errors, the reason may be:

Missing File

You can verify if telerik-blazor.js is loaded successfully by inspecting the Network tab of your browser developer tools. The following list reveals some common causes for a missing JS Interop file. Most of the mentioned issues result in failing requests for non-Telerik static assets as well.

  • The application is missing references to the required assets.
  • The request for telerik-blazor.js fails due to incorrect or incompatible values in:
    • <base href="..." /> in App.razor
    • launchUrl and applicationUrl in launchSettings.json
  • Static assets are not enabled. Starting from .NET 9, there are two different ways to enable them.
  • Static assests are enabled, but the ASPNETCORE_ENVIRONMENT variable is not set to Development in launchSettings.json. In such cases, you can load assets from CDN or enable static assets for non-Development environments.
  • The network setup blocks access to remote URLs like a CDN. In such cases, you have two options:
    • Ask your network administrators to allow the remote host.
    • Load static assets from the NuGet package or from the wwwroot app folder.
  • A problem occurs during deployment. See the Deployment Troubleshooting article for more details.

Defer Attribute

Sometimes, the JS Interop file is referenced correctly and returns successfully, but occasionally you get the error. This indicates a timing issue (for example, low machine performance or slow network) that causes the script to load and be parsed too late, after it is needed.

One solution is to remove the defer attribute of the <script> tag that registers telerik-blazor.js. On the other hand, defer improves the performance of your app by loading the script asynchronously. That's why a better option is to keep the defer attribute and start the client-side Blazor framework manually.

HTML Tags Order

You can get the error when the application is navigating from an interactive page. If this is the case, register the telerik-blazor.js after the <base href="/" /> in the <head> of the web page:

HTML
<head>
    ...
    <base href="/" />
    <script src="_content/Telerik.UI.for.Blazor/js/telerik-blazor.js" defer></script>
    ...
</head>

TypeScript

By default, TypeScript results in compiled code that needs the exports object, and that is not available in Blazor by default, so it throws an error. A common workaround for that (defining an empty exports object) causes errors from the Telerik JS Interop files. You can read more about the errors and the solutions in the TypeScript Exports error breaks Telerik Blazor Knowledge Base article.

init[Component] was undefined

The error message may mention a component or feature initialization method, for example:

  • Microsoft.JSInterop.JSException: Could not find 'TelerikBlazor.initCard' ('initCard' was undefined).
  • Error: Microsoft.JSInterop.JSException: Could not find 'initGrid' in 'window.TelerikBlazor'.
  • Error: Could not find 'TelerikBlazorPopup' in 'window'.
  • Error: Could not find 'TelerikBlazor.columnResizableSetColumns' ('columnResizableSetColumns' was undefined).
  • Any error referring to a Telerik component or feature that cannot be found in the JS code.

Such an error means that the telerik-blazor.js script file version does not match the NuGet package version. As a result, the script does not include all components, features or correct method names.

If you use our CDN to load the script file, make sure the file URL matches the package version. If you load the script as a local file from the wwwroot folder, then replace the file. See the Upgrade Process article for details.

Another common reason is browser caching, if the file comes from the static NuGet assets or a local folder. Clear the browser cache or "hard refresh" the page to fix that. Consider a cache buster for the Telerik CSS and JavaScript files.

Cannot read properties of null (reading 'addEventListener')

The error message may also mention removeEventListener instead of addEventListener.

There are two known reasons for this JavaScript error.

One is related to UI for Blazor update in WebAssembly (WASM) projects. See the article TypeError: Cannot read properties of null (reading 'addEventListener').

Another possible cause is a race condition during fast multiple recreations of components, or fast navigation. If this happens, our JavaScript code may try to access a DOM element that no longer exists. The solution is to avoid fast duplicate UI refresh, for example:

  • Do not call StateHasChanged() inside EventCallback methods (e.g. Button click handlers). Blazor executes StateHasChanged() automatically in such cases.
  • Throttle the user behavior, so that rapid subsequent navigation is not possible.

SyntaxError: Unexpected token

This section applies to JavaScript errors similar to Unexpected token or Invalid character. The exact token can vary, but it's usually a part of the modern JavaScript syntax, for example:

Such errors indicate an outdated browser version, WebView, or emulator, which doesn't support recent ECMAScript standards. Microsoft Blazor supports only current browsers. The browser support policy for Telerik UI for Blazor is the same.

A syntax error will cause the browser to discard the whole telerik-blazor.js file, which will also lead to error Could not find 'TelerikBlazor.initMediaQuery' ('TelerikBlazor' was undefined).

KeyNotFoundException: The given key inputElementValue was not present

The full exception message is System.Collections.Generic.KeyNotFoundException: The given key 'inputElementValue' was not present in the dictionary.

This error indicates that the app is using an old or wrong version of the telerik-blazor.js file, for example, after a component version upgrade.

Object doesn't support property or method 'assign'

Under IE, you may get errors similar to Object doesn't support property or method 'assign' or errors that relate other modern JS features that are not supported under IE. The reason is that we use modern code that may not work under IE - it is not one of the browsers we support, and WebAssembly does not work on it anyway, so modern Blazor apps won't run on IE regardless.

Maximum call stack size exceeded

The error indicates that a .NET 8 app is using a telerik-blazor.js file that is for version 4.5.0 or earlier. If the Telerik UI for Blazor package version is up-to-date, a possible cause for the error is browser cache and you may need to add a cache buster for the Telerik CSS and JavaScript files.

See Also