New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

TypeError: h is not a constructor at Sys.Component.create

Description

In some cases, an update of the project's framework to 4.5 or later (4.6, 4.7, 4.8) could cause some controls to not function after an Ajax request/partial postback. The issue could be tracked by checking the browser's console for a JavaScript error that could prevent the proper behavior of the controls:

Error Message

TypeError: h is not a constructor at Sys.Component.create at Sys._Application.add_init at Sys._ScriptLoader._loadScriptsInternal at Sys._ScriptLoader._loadScriptsInternal at Sys._ScriptLoader._loadScriptsInternal at Sys._ScriptLoader._nextSession at Sys._ScriptLoader._loadScriptsInternal at Sys._ScriptLoader._scriptLoadedHandler at Sys.Component.create at add_init at _loadScriptsInternal at _loadScriptsInternal at _loadScriptsInternal at _nextSession at _loadScriptsInternal at _scriptLoadedHandler at _scriptLoadHandler at b

Solution

1) For .NET 4.5+ projects, ensure the UnobtrusiveValidation key in the web.config is set

<configuration>
  <appSettings>
    <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />

The problem is discussed at:

2) Set EnableScriptsCombine=false for the RadScriptManager. This could help to resolve the issue and one possible reason for the issue would be if there is a custom script that is incorrectly formatted or when combined with other scripts cause some errors.

2.1) Some more related resources on the topic with the incorrectly formatted custom script files:

See Also

In this article