Wijmo UI for the Web
AngularJS and wijgallery
Wijmo User Guide > AngularJS Directives > AngularJS and wijgallery

In this Angular getting started guide, you'll learn how to use the wijgallery in an HTML project using HTML markup, jQuery script, and AngularJS directives.

For more complex samples that have the controller and model in separate files, see the AngularJS Directive Gallery on our web site.

  1. To create a new HTML page in your favorite text editor, add the following code and save the document with an .html extension. Notice that the <HTML> and <body> tags are different from our usual tags.
    • The <HTML> tag is marked as an Angular app with the ng-app directive, in our script, we will specify that it uses Wijmo.
    • The <body> tag is used to define the scope of the Angular controller that we create. You can use another tag such as a <div> for the scope, but for our purposes, we will use the entire body. The ng-controller directive specifies the controller to use within this scope.

    Drop down and copy markup

    Paste in your favorite text editor.
    Copy Code
    <!DOCTYPE HTML>
    <HTML ng-app="MyApp">
    <head>
    </head>
    <body ng-controller="MyController">
    </body>
    </HTML>
    
  2. Add links to the dependencies to your HTML page within the <head> tags. Find the latest dependencies in the content delivery network (CDN) file at wijmo cdn. Along with our usual references, we add two script references for Angular that must come after the jQuery references, so they are the last two lines:
    • One is for AngularJS itself.
    • The other is for Wijmo's Angular javascript integration library.

    Drop down and copy references to paste inside the head tags

    References
    Copy Code
    <!-- jQuery -->
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.0/jquery-ui.min.js" type="text/javascript"></script>
    
    <!--Theme-->
    <link href="http://cdn.wijmo.com/themes/aristo/jquery-wijmo.css" rel="stylesheet" type="text/css" />
    
    <!--Wijmo Widgets CSS-->
    <link href="http://cdn.wijmo.com/jquery.wijmo-pro.all.3.20162.99.min.css" rel="stylesheet" type="text/css" />
    
    <!-- Wijmo Scripts -->
    <script src="http://cdn.wijmo.com/jquery.wijmo-open.all.3.20162.99.min.js" type="text/javascript"></script>
    <script src="http://cdn.wijmo.com/jquery.wijmo-pro.all.3.20162.99.min.js" type="text/javascript"></script>
    
    <!-- Angular -->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.0/angular.min.js"></script>
    <script src="http://cdn.wijmo.com/interop/angular.wijmo.3.20162.99.min.js"></script>
  3. Within the <head> tags, below the references, add the following script to set the app to use Wijmo, and to create a simple controller with a $scope parameter to control data context.
    Script
    Copy Code
    <script type="text/javascript">
        var app = angular.module("MyApp", ["wijmo"]);
        function MyController($scope) {}
    </script>
  4. Add the following markup within the <body> tags to create the widget. To see how this is done in jQuery without Angular, see Quick Start.
    • We use a <wij-wijgallery> directive to create the widget, and set several options as attributes within the element:
      • We set the showControlsOnHover option (show-controls-on-hover directive) to false to always keep the buttons visible.
      • We set the thumbsDisplay option (thumbs-display directive) to display 4 small images along the bottom of the gallery.
      • We set the thumbsLength option (thumbs-length directive) to 150.
      • We set the style attribute to limit the width of the gallery.
    • We use nested elements in the markup to add images and titles to the gallery.
      • Inside our <ul> element, we add a line item <li> element for each image.
      • Inside each line item, we nest a hyperlink <a> to the image.
      • Inside each hyperlink, we nest an <img> element with a caption in the title attribute.                
    Markup
    Copy Code
    <wij-gallery show-controls-on-hover="false" thumbs-display="4" thumbs-length="150" style="width:650px" >
        <ul class="">
        <li class=""><a href="Images/sports1.png">
                <img alt="1" src="Images/sports1.png" title="Word Caption 1" />
            </a></li>
            <li class=""><a href="Images/sports2.png">
                <img alt="2" src="Images/sports2.png" title="Word Caption 2" />
            </a></li>
            <li class=""><a href="Images/sports3.png">
                <img alt="3" src="Images/sports3.png" title="Word Caption 3" />
            </a></li>
            <li class=""><a href="Images/sports4.png">
                <img alt="4" src="Images/sports4.png" title="Word Caption 4" />
            </a></li>
            <li class=""><a href="Images/sports5.png">
                <img alt="5" src="Images/sports5.png" title="Word Caption 5" />
            </a></li>
            <li class=""><a href="Images/sports6.png">
                <img alt="6" src="Images/sports6.png" title="Word Caption 6" />
            </a></li>
            <li class=""><a href="Images/sports7.png">
                <img alt="7" src="Images/sports7.png" title="Word Caption 7" />
            </a></li>
            <li class=""><a href="Images/sports8.png">
                <img alt="8" src="Images/sports8.png" title="Word Caption 8" />
            </a></li>
            <li class=""><a href="Images/sports9.png">
                <img alt="9" src="Images/sports9.png" title="Word Caption 9" />
            </a></li>
        </ul>
    </wij-gallery>
  5. Save your HTML file and open it in a browser. The widget appears like the following live widget.
    MISSING WIDGET TYPE: The "Live Widget" Widget Type could not be found. The "Live Widget" Widget Type may have been deleted since this Widget was created.
See Also

Reference

Widgets