Telerik ScriptableComponent bug:
Javascript error here. I tried to disable jQuery buitin reference by Telerik. And instead I try to render my own reference e.g. could be CDN reference or local reference.
Html.Telerik().ScriptRegistrar().jQuery(false).jQueryValidation(false).Scripts(s => s.AddSharedGroup("local")).Render();
On this page I'm trying to use Telerik MVC Extensions Window Html.Telerik().Window()
At the bottom of the page I'm referencing my own jQuery configured in Web.config
Html.Telerik().ScriptRegistrar().jQuery(false).jQueryValidation(false).Scripts(s => s.AddSharedGroup("local")).Render();
And before this I tried to render the Telerik Window and I get the error.
The cause of this is that Window component register telerik required scripts in the default group. And it gets rendered first before any other scripts configured. And because Telerik scripts requires jQuery which is referenced after that the js error takes place.
I would love to have full control over the order of what's being rendered. For example, I might wish to render specific group to be the last. As it would reference some other configured groups plus telerik scripts being rendered.
Kindly review the attached app to reproduce the error