New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Carousel Mode

  • Switch between two Carousel modes
Since Q2 2010 RadRotator supports 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" 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.

  • DefaultVB.aspx
  • DefaultVB.aspx.vb
  • scripts.js
  • styles.css
<%@ Page Language="vb" AutoEventWireup="true" Inherits="Telerik.Web.Examples.Rotator.CarouselMode.DefaultVB"CodeFile="DefaultVB.aspx.vb"  %>

<%@ Register TagPrefix="qsf" Namespace="Telerik.QuickStart" %>
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head runat="server">
    <title>Telerik ASP.NET Example</title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="scripts.js"></script>
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager runat="server" ID="RadScriptManager1" />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <div class="demo-container size-wide no-bg">
        <asp:Panel ID="RotatorWrapper" runat="server" CssClass="rotNoButtonsBack">
            <telerik:RadRotator RenderMode="Lightweight" 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()) %>">
                    </asp:Image>
                </ItemTemplate>
            </telerik:RadRotator>
        </asp:Panel>
    </div>
    <qsf:ConfiguratorPanel runat="server" ID="ConfigurationPanel1" Enabled="true" Title="Switch between two Carousel modes">
        <Views>
            <qsf:View runat="server">
                <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>
            </qsf:View>
        </Views>
    </qsf:ConfiguratorPanel>
    </form>
</body>
</html>

Support & Learning Resources

Find Assistance