jQWidgets Forums

jQuery UI Widgets Forums Editors ScrollBar, Slider, BulletChart, RangeSelector jqxScrollView repeater & ItemTemplate

This topic contains 2 replies, has 2 voices, and was last updated by  Pres 11 years, 7 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • jqxScrollView repeater & ItemTemplate #27893

    Pres
    Member

    I want to use the mobile jqxScrollView but I want to control images in the HTML items based upon the set of records in the DB. I hope there is something like the <asp:repeater and . I did not see a topic in the forum for jqxScrollView so I asked the question here.

    jqxScrollView repeater & ItemTemplate #27917

    Dimitar
    Participant

    Hello Pres,

    You can achieve a similar effect using jQuery. Here is an example:

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" />
    <link rel="stylesheet" href="../../jqwidgets/styles/jqx.web.css" />
    <script type="text/javascript" src="../../scripts/gettheme.js"></script>
    <script type="text/javascript" src="../../scripts/jquery-1.10.2.min.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxscrollview.js"></script>
    <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script>
    <script type="text/javascript">
    $(function () {
    var theme = "";
    $('#photoGallery').jqxScrollView({ width: 600, height: 450, buttonsOffset: [0, 0], theme: theme });
    var urlArray = new Array("../../images/Harry_Potter_7_Part_1.jpg", "../../images/Harry_Potter_7_Part_2.jpg", "../../images/The_Amazng_Spider_Man.jpeg");
    $("#change").click(function () {
    var images = $("#photoGallery .photo");
    for (var i = 0; i < images.length; i++) {
    $(images[i]).css("background-image", "url(" + urlArray[i] + ")");
    };
    });
    });
    </script>
    <style type="text/css">
    .photo
    {
    width: 600px;
    height: 450px;
    background-color: #000;
    background-position: center;
    background-repeat: no-repeat;
    }
    </style>
    </head>
    <body class="default">
    <button id="change">
    Change images</button>
    <div id="photoGallery">
    <div>
    <div class="photo" style="background-image: url(../../images/imageNature1.jpg)">
    </div>
    </div>
    <div>
    <div class="photo" style="background-image: url(../../images/imageNature2.jpg)">
    </div>
    </div>
    <div>
    <div class="photo" style="background-image: url(../../images/imageNature3.jpg)">
    </div>
    </div>
    </div>
    <div style='margin-top: 20px;'>
    <br />
    <div>
    <input type="button" value="Start Slideshow" id="StartBtn" />
    <input type="button" value="Stop Slideshow" id="StopBtn" />
    </div>
    </div>
    </body>
    </html>

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

    jqxScrollView repeater & ItemTemplate #27979

    Pres
    Member

    Dimitar, thanks I will try this out as soon as I get a chance! Pres

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.