Telerik is a leading vendor of ASP.NET AJAX, ASP.NET MVC, Silverlight, WinForms and WPF controls and components, as well as .NET Reporting, .NET ORM , .NET CMS, Code Analysis, Mocking, Team Productivity and Automated Testing Tools. Building on its expertise in interface development and Microsoft technologies, Telerik helps customers build applications with unparalleled richness, responsiveness and interactivity. Telerik products help thousands of companies to be more productive and deliver reliable applications under budget and on time.
Version Q2 2011 released 07/12/2011
select

Rotator / Carousel Mode

Switch between two Carousel modes

  • Enabling RadRotator's Carousel mode


    Telerik RadRotator supports (starting from Q2 2010) two additional RotatorTypes - Carousel and CarouselButtons. Modes can be set using RotatorType property of the control.

    Important: The Carousel mode of RadRotator works best, in case there is only a single image in every rotator item.

    • Enabling Carousel mode directly on the markup:
      <telerik:RadRotator ID="RadRotator1" runat="server" Width="810px" ItemWidth="300"
          Height="350px" ItemHeight="220" ScrollDuration="500" FrameDuration="2000" EnableRandomOrder="true"
          PauseOnMouseOver="false" Skin="Windows7" RotatorType="Carousel">
      . . . . . . . . . . . . . . . . . . . . . . . .
    • Enabling Carousel mode in codebehind:
      RadRotator1.RotatorType = RotatorType.Carousel;

    If the RotatorType="CarouselButtons" is set, then the items are moved by clicking the RadRotator's default navigation buttons located on the left and right side of the control.

    In this example, RadRotator shows the content of a directory. The images are loaded using the GetFilesInFolder method, shown in the codebehind file.

Source Code

C# VB.NET
Show code in new window Demo isolation steps
  • <%@ Page Language="c#" AutoEventWireup="true" Inherits="Telerik.Web.Examples.Rotator.CarouselMode.DefaultCS"
        CodeFile="DefaultCS.aspx.cs" %>

    <%@ Register TagPrefix="qsf" TagName="Header" Src="~/Common/Header.ascx" %>
    <%@ Register TagPrefix="qsf" TagName="HeadTag" Src="~/Common/HeadTag.ascx" %>
    <%@ Register TagPrefix="qsf" TagName="Footer" Src="~/Common/Footer.ascx" %>
    <%@ Register TagPrefix="telerik" Namespace="Telerik.QuickStart" %>
    <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <qsf:HeadTag ID="Headtag1" runat="server" />
        <style type="text/css">
            .rotNoButtonsBack, .rotWithButtonsBack
            {
                margin-left: auto;
                margin-right: auto;
                height: 350px;
                font-family: Arial;
                padding: 0;
            }
            .rotNoButtonsBack
            {
                width: 810px;
                background: url("back.jpg");
            }
            .rotWithButtonsBack
            {
                width: 831px;
                height: 352px;
                background: url("back.jpg") no-repeat scroll 21px 1px transparent;
            }
            .horizontalRotator
            {
                margin-left: auto;
                margin-right: auto;
            }
        </style>
    </head>
    <body class="BODY">
        <form id="Form1" method="post" runat="server">
        <qsf:Header ID="Header1" runat="server" NavigationLanguage="c#" />
        <telerik:RadScriptManager ID="ScriptManager1" runat="server">
        </telerik:RadScriptManager>
        <telerik:ConfiguratorPanel runat="server" ID="ConfigurationPanel1" Enabled="true"
            Title="Switch between two Carousel modes" Expanded="true" Style="text-align: left;"
            HorizontalAlign="Right">
            <asp:RadioButtonList ID="dblCarouselModes" runat="server" AutoPostBack="true" OnSelectedIndexChanged="dblCarouselModes_SelectedIndexChanged">
                <asp:ListItem Selected="True" Text="Carousel" Value="Carousel"></asp:ListItem>
                <asp:ListItem Selected="False" Text="CarouselButtons" Value="CarouselButtons"></asp:ListItem>
            </asp:RadioButtonList>
        </telerik:ConfiguratorPanel>
        <div class="mainDiv">
            <asp:Panel ID="RotatorWrapper" runat="server" CssClass="rotNoButtonsBack">
                <telerik:RadRotator ID="RadRotator1" runat="server" Width="810px" ItemWidth="300"
                    Height="350px" ItemHeight="220" ScrollDuration="500" FrameDuration="2000"
                    PauseOnMouseOver="false" RotatorType="CarouselButtons" OnClientItemClicked="OnClientItemClicked">
                    <ItemTemplate>
                        <asp:Image ID="Image1" runat="server" ImageUrl='<%# Container.DataItem %>' AlternateText="<%# VirtualPathUtility.GetFileName(Container.DataItem.ToString()) %>" />
                    </ItemTemplate>
                </telerik:RadRotator>
            </asp:Panel>
            <script type="text/javascript">
            function OnClientItemClicked(sender, args)
            {
                sender.set_currentItemIndex(args.get_item().get_index(), true);
            }
            </script>
        </div>
        <qsf:Footer runat="server" ID="Footer1" />
        </form>
    </body>
    </html>

Get more than expected!

 
 

Take your time to truly experience the power of RadControls for ASP.NET AJAX with a free 60-day trial backed up by Telerik’s unlimited dedicated support.

Download your RadControls for ASP.NET AJAX trial and jumpstart your development with the available Getting Started resources.

If you have any questions, do not hesitate to contact us at sales@telerik.com.

Copyright 2002-2024 © Telerik. All right reserved
Telerik Inc, 201 Jones Rd, Waltham, MA 02451