Script logger loads jquery.validation.min.js even after
Html.Telerik().ScriptRegistrar().jQuery(false)
Is there any way to say this not to do this?
Even when I try to download exactly what I need, do the following:
@Html.Telerik().ScriptRegistrar().jQuery(false).DefaultGroup(g => { g.Add("telerik.common.min.js"); g.Add("telerik.tabstrip.min.js"); }
And if, for example, I have a telerik grid on the page, it will load all the necessary scripts, including grid.min, grid.editing and jquery.validate.min.
I prefer to control it myself, but instead just get an error or broken elements if I forget to identify the correct scripts.
If I try to use this snippet:
@Html.Telerik().ScriptRegistrar().jQuery(false).Scripts(s => { s.Add("telerik.common.min.js"); ...
It ignores useTelerikContentDeliveryNetwork="true" in web.config and searches for scripts on the local server. I still want to use CDN.
UPD: Is there a way to use telerik CDN sources, but if for some reason they do not work, download all the materials from the project server?
Agzam source share