This question is locked. New answers and comments are not allowed.
This is a rather obscure one.
I include JQuery scripts at the top of my page and the ScriptRegistrar at the bottom.
With jQuery disabled in the ScriptRegistrar so it won't destroy the jQuery UI and Validation bindings. This works fine, except for one ting. When we use jQuery Window the close button in the top right corner does not work. Tested in Firefox 3.6.13 and IE8.
If I remove the
Using version 2010.3.1110.340 of the Telerik.Web.Mvc.dll
Moving the jQuery scripts to the bottom of the page is not an option since $(document).ready() is used in several places. I tried loading just jQuery at the top and all the other scripts after the Telerik ScriptRegistar (that also loaded jQuery) but that gave the same error.
Any thoughts to what I'm doing wrong?
I include JQuery scripts at the top of my page and the ScriptRegistrar at the bottom.
<script type="text/javascript" src="@Url.Content("~/Scripts/jquery-1.4.3.min.js")"></script><script type="text/javascript" src="@Url.Content("~/Scripts/jquery.unobtrusive-ajax.js")"></script><script type="text/javascript" src="@Url.Content("~/Scripts/jquery.validate.js")"></script><script type="text/javascript" src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.js")"></script><script type="text/javascript" src="@Url.Content("~/Scripts/jquery.form.js")"></script> @Html.Telerik().ScriptRegistrar().jQuery(false).Globalization(true).DefaultGroup(group => group .Add("telerik.common.min.js") .... .Add("telerik.grid.filtering.js") )</body>With jQuery disabled in the ScriptRegistrar so it won't destroy the jQuery UI and Validation bindings. This works fine, except for one ting. When we use jQuery Window the close button in the top right corner does not work. Tested in Firefox 3.6.13 and IE8.
If I remove the
.jQuery(false) the close button works (but all the jQuery UI/Validation stuff breaks).Using version 2010.3.1110.340 of the Telerik.Web.Mvc.dll
Moving the jQuery scripts to the bottom of the page is not an option since $(document).ready() is used in several places. I tried loading just jQuery at the top and all the other scripts after the Telerik ScriptRegistar (that also loaded jQuery) but that gave the same error.
Any thoughts to what I'm doing wrong?