Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
  <head>
    <!-- Twitter bootstrap -->
    <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css" rel="stylesheet">
    <link href="//rawgit.com/mgonto/angular-wizard/master/dist/angular-wizard.css" rel="stylesheet">
    <!-- apiCheck is used by formly to validate its api -->
    <script src="//npmcdn.com/api-check@latest/dist/api-check.js"></script>
    <script src="//cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.js"></script>
    <!-- This is the latest version of angular (at the time this template was created) -->
    <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.js"></script>
    
    <script src="//rawgit.com/mgonto/angular-wizard/master/dist/angular-wizard.js"></script>
    <!-- This is the latest version of formly core. -->
    <script src="//npmcdn.com/angular-formly@latest/dist/formly.js"></script>
    <!-- This is the latest version of formly bootstrap templates -->
    <script src="//npmcdn.com/angular-formly-templates-bootstrap@latest/dist/angular-formly-templates-bootstrap.js"></script>
    <title>Angular Formly Example</title>
  </head>
  <body ng-app="formlyExample" ng-controller="MainCtrl as vm">
    <div>
      <h1>angular-formly example: {{vm.exampleTitle}}</h1>
      <div>
        This is an example of using angular-formly with <a href="https://github.com/mgonto/angular-wizard">angular-wizard</a>.
        It was created in response to <a href="https://github.com/formly-js/angular-formly/issues/226">#266</a>.
      </div>
      <hr />
      <form name="vm.form">
        <wizard on-finish="vm.finishWizard()"> 
          <wz-step title="Step 1" canexit="vm.exitValidation(vm.forms.step1)">
            <h2>Step 1</h2>
            <formly-form model="vm.model" fields="vm.fields.step1" form="vm.forms.step1">
              <div style="text-align:right">
                <button type="submit" ng-disabled="vm.forms.step1.$invalid" wz-next class="btn btn-primary submit-button">Next</button>
              </div>
            </formly-form>
          </wz-step>
          <wz-step title="Step 2" canexit="vm.exitValidation(vm.forms.step2)">
            <h2>Step 2</h2>
            <formly-form model="vm.model" fields="vm.fields.step2" form="vm.forms.step2">
              <div style="text-align:right">
                <button type="submit" ng-disabled="vm.forms.step2.$invalid" wz-next class="btn btn-primary submit-button">Next</button>
              </div>
            </formly-form>
          </wz-step>
          <wz-step title="Confirm">
            <h2>Confirm</h2>
            <div>Username: {{vm.model.email}}</div>
            <div>First Name: {{vm.model.firstName}}</div>
            <div>Last Name: {{vm.model.lastName}}</div>
            <div style="text-align:right">
              <button type="submit" ng-disabled="vm.form.$invalid" wz-finish class="btn btn-primary submit-button">Confirm</button>
            </div>
          </wz-step>
        </wizard>
      </form>
      <hr />
      <h2>Model</h2>
      <pre>{{vm.model | json}}</pre>
      <h2>Fields <small>(note, functions are not shown)</small></h2>
      <pre>{{vm.originalFields | json}}</pre>
      <h2>Form</h2>
      <pre>{{vm.form | json}}</pre>
    </div>
    <div style="margin-top:30px">
      <small>
        This is an example for the
        <a href="https://formly-js.github.io/angular-formly">angular-formly</a>
        project made with ♥ by
        <strong>
          <span ng-if="!vm.author.name || !vm.author.url">
            {{vm.author.name || 'anonymous'}}
          </span>
          <a ng-if="vm.author.url" ng-href="{{::vm.author.url}}">
            {{vm.author.name}}
          </a>
        </strong>
        <br />
        This example is running angular version "{{vm.env.angularVersion}}" and formly version "{{vm.env.formlyVersion}}"
      </small>
    </div>
    <!-- Put custom templates here -->
  </body>
</html>
 
body {
  margin: 20px
}
.formly-field {
  margin-bottom: 16px;
}
 
/* global angular */
(function() {
  'use strict';
  var app = angular.module('formlyExample', ['formly', 'formlyBootstrap', 'mgo-angular-wizard'], function config(formlyConfigProvider) {
    // set templates here
    formlyConfigProvider.setType({
      name: 'whatever',
      template: 'your template'
    });
  });
  app.controller('MainCtrl', function MainCtrl(formlyVersion) {
    var vm = this;
    // funcation assignment
    vm.finishWizard = finishWizard;
    // variable assignment
    vm.author = { // optionally fill in your info below :-)
      name: 'Kent C. Dodds',
      url: 'https://twitter.com/kentcdodds' // a link to your twitter/github/blog/whatever
    };
    vm.exampleTitle = 'With angular-wizard'; // add this
    vm.env = {
      angularVersion: angular.version.full,
      formlyVersion: formlyVersion
    };
    vm.model1 = {};
    vm.model2 = {};
    
    vm.exitValidation = function(form) {
      return form && !form.$invalid;
    };
    vm.fields = {
      step1: [
        {
          key: 'email',
          type: 'input',
          templateOptions: {
            label: 'Username',
            type: 'email',
            placeholder: 'Email address',
            required: true
          }
        }
      ],
      step2: [
        {
          key: 'firstName',
          type: 'input',
          templateOptions: {
            label: 'First Name',
            required: true
          }
        },
        {
          key: 'lastName',
          type: 'input',
          templateOptions: {
            label: 'Last Name',
            required: true
          }
        }
      ]
    };
    vm.originalFields = angular.copy(vm.fields);
    // function definition
    function finishWizard() {
      alert(JSON.stringify(vm.model), null, 2);
    }
  });
})();
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers