This question is locked. New answers and comments are not allowed.
Hi all,
Every time I try to use a jquery UI control or even a @Ajax.ActionLink call I get all sorts of errors: "jQuery undefined, Dialog not defined, etc"
I try to use jQuery(false) and then manually register the rest of the scripts like the code below in my Layout file.
The problem is that I don't know how to find out what script is missing.
If you are using Telerik controls, and jQuery UI controls and also the Ajax.ActionLink calls, what is the best way to register the scripts?What scripts do I need? how to pinpoint WHAT is missing?
Thank you
Every time I try to use a jquery UI control or even a @Ajax.ActionLink call I get all sorts of errors: "jQuery undefined, Dialog not defined, etc"
I try to use jQuery(false) and then manually register the rest of the scripts like the code below in my Layout file.
The problem is that I don't know how to find out what script is missing.
@(Html.Telerik().ScriptRegistrar() .jQuery(false) .DefaultGroup(group => group .Add("telerik.common.js") .Add("telerik.grid.min.js") .Add("telerik.component.js") .Add("~/Scripts/MicrosoftAjax.js") .Add("~/Scripts/MicrosoftMvcAjax.js") .Add("~/Scripts/jquery.unobtrusive-ajax.js") .Add("~/Scripts/jquery.validate.js") .Add("~/Scripts/jquery.validate.unobtrusive.js") .Combined(true).Compress(true) ))If you are using Telerik controls, and jQuery UI controls and also the Ajax.ActionLink calls, what is the best way to register the scripts?What scripts do I need? how to pinpoint WHAT is missing?
Thank you
