jquery 1.5.1 called in Telerik.Web.UI.WebResource.axd - WHY?

Posted by Community Admin on 03-Aug-2018 18:30

jquery 1.5.1 called in Telerik.Web.UI.WebResource.axd - WHY???

All Replies

Posted by Community Admin on 06-May-2011 00:00

how do i stop this - it's breaking my jquery scripts because i was already embedding a call to
    <script type="text/javascript" src="ajax.googleapis.com/.../script>

in my templates. is there anyway to make this not display - also it puts this web resource right below the form tag in the body of the page.

this is the one i'm referring too -

<script src="/Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=ctl06_TSM&compress=0&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3aen%3a1f68db6e-ab92-4c56-8744-13e09bf43565%3aea597d4b%3ab25378d2%3bTelerik.Sitefinity.Resources%3aen%3a39c32823-ea94-4b6e-9960-db247a79a955%3a3e9ffdcc%3a7ee0bb1f%3a83eb063b%3a1939e47e%3a1154458f%3a2232f901%3a24e33f3%3bTelerik.Sitefinity%3aen%3a0d96704b-0a26-4ca4-ac16-99437def4858%3a993d8e92%3a5b182b17%3a9a1c6da2%3a3b9a1b05%3ae51c0fb3%3bTelerik.Web.UI%2c+Version%3d2011.1.315.40%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen%3ad425b944-0936-4ae5-9470-bd99fe099c02%3a16e4e7cd%3af7645509%3a24ee1bba%3ae330518b%3a1e771326%3a8e6f0d33%3aa1a4383a%3bTelerik.Sitefinity%2c+Version%3d4.1.1367.0%2c+Culture%3dneutral%2c+PublicKeyToken%3db28c218413bdf563%3aen%3a0d96704b-0a26-4ca4-ac16-99437def4858%3a81554a3f%3afe4b1370%3aaa9a9de0%3bTelerik.Web.UI%2c+Version%3d2011.1.315.40%2c+Culture%3dneutral%2c+PublicKeyToken%3d121fae78165ba3d4%3aen%3ad425b944-0936-4ae5-9470-bd99fe099c02%3a874f8ea2%3af46195d3%3a19620875%3a490a9d4e%3abd8f85e4%3bTelerik.Sitefinity%2c+Version%3d4.1.1367.0%2c+Culture%3dneutral%2c+PublicKeyToken%3db28c218413bdf563%3aen%3a0d96704b-0a26-4ca4-ac16-99437def4858%3a80c147f%3af77740f1%3a26cfb6dc%3a6e04508f%3bTelerik.Sitefinity.Resources%3aen%3a39c32823-ea94-4b6e-9960-db247a79a955%3ac4ef6dcd%3a6f03d72a%3bTelerik.Sitefinity%2c+Version%3d4.1.1367.0%2c+Culture%3dneutral%2c+PublicKeyToken%3db28c218413bdf563%3aen%3a0d96704b-0a26-4ca4-ac16-99437def4858%3ac1fc658e%3a447a22b8%3bTelerik.Sitefinity.Resources%3aen%3a39c32823-ea94-4b6e-9960-db247a79a955%3a1077b7cd%3bTelerik.Sitefinity%2c+Version%3d4.1.1367.0%2c+Culture%3dneutral%2c+PublicKeyToken%3db28c218413bdf563%3aen%3a0d96704b-0a26-4ca4-ac16-99437def4858%3ade209ee7%3a688a162a" type="text/javascript"></script>

Posted by Community Admin on 09-May-2011 00:00

i have templates set to no themes btw.

Posted by Community Admin on 11-May-2011 00:00

Hi Brandon,

If you really need to use this old version of jQuery - 1.3.2 you can do it this way:
Download the jQuery 1.3.2 Library locally and edit the file - put at the end of it the following line:

// Move jQuery to $oldJquery
$oldJquery = jQuery.noConflict(true);


More information can be found here: http://api.jquery.com/jQuery.noConflict/

After that you'll be able to access it this way: $oldJquery instead of $ or jQuery.

Anyway I'd advise you to use the version that you alread have here - 1.5.1. It is referred because our controls use it, if you explicitly need jQuery somewhere you can do it this way:

<sitefinity:ResourceLinks id="resourcesLinks" runat="server">
<sitefinity:ResourceFile JavaScriptLibrary="JQuery"></sitefinity:ResourceFile>
</sitefinity:ResourceLinks>


Kind regards,
Pavel
the Telerik team
Do you want to have your say in the Sitefinity development roadmap? Do you want to know when a feature you requested is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

This thread is closed