jquery slider

Posted by Community Admin on 03-Aug-2018 12:14

jquery slider

All Replies

Posted by Community Admin on 17-Feb-2012 00:00

Hello,
I have couple of jqueries for slider images. How can i apply it to my sitefinity project. i know image rotator slider & faflate slider but i want to implement that functionality with my jquery. Please suggest me experts.
Thnks & Regards,
Nrv. 

Posted by Community Admin on 18-Feb-2012 00:00

Isn't there anyone available for help ??

Posted by Community Admin on 21-Feb-2012 00:00

Hi,

 Create a master page and use it to create a page template in Sitefinity. On the master page load Sitefinity jQuery. The jQuery loaded by Sitefinity 4.4.2117 is 1.7.1. There are two ways to load it:

With Resource links

<%@ Register TagPrefix="sitefinity" Assembly="Telerik.Sitefinity" Namespace="Telerik.Sitefinity.Web.UI" %>
<sitefinity:ResourceLinks id="resourcesLinks" runat="server">
    <sitefinity:ResourceFile Name="Telerik.Sitefinity.Resources.Scripts.jquery-1.7.1.min.js" Static="true" />
</sitefinity:ResourceLinks>
And javascript embed ocntrol, that can load scripts form external files ot URL. Use this if you need other version of jQuery loaded.
<sf:JavaScriptEmbedControl runat="server" ID="jQueryLink" ScriptEmbedPosition="Head"
        
</sf:JavaScriptEmbedControl>
        
<sf:JavaScriptEmbedControl runat="server" ID="jQueryUILink" ScriptEmbedPosition="Head"
        
</sf:JavaScriptEmbedControl>
        
<sf:JavaScriptEmbedControl runat="server" ID="JavaScriptEmbedControl6" Url="~/RTC_Scripts/series.js"
        
    ScriptEmbedPosition ="Head">
        
</sf:JavaScriptEmbedControl>
        
<sf:JavaScriptEmbedControl runat="server" ID="JavaScriptEmbedControl5" Url="~/RTC_Scripts/jquery.anythingslider.js"
        
    ScriptEmbedPosition="Head">
        
</sf:JavaScriptEmbedControl>
Please note there might be script conflicts when using different jQuery versions on the same frontend page.
Kind regards,
Stanislav Velikov
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