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.2/css/bootstrap.css" rel="stylesheet">
    <!-- apiCheck is used by formly to validate its api -->
    <script src="//rawgit.com/kentcdodds/api-check/latest/dist/api-check.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.4/angular.js"></script>
    
    <!-- This is the current state of master for formly core. -->
    <script src="//rawgit.com/formly-js/angular-formly/latest/dist/formly.js"></script>
    <!-- This is the current state of master for the bootstrap templates -->
    <script src="//rawgit.com/formly-js/angular-formly-templates-bootstrap/latest/dist/angular-formly-templates-bootstrap.js"></script>
    <!-- additional dependencies go here -->
    
    <title>Angular Formly Question</title>
  </head>
  <body ng-app="formlyQuestion" ng-controller="MainCtrl as vm">
    <div>
      <h1>angular-formly question</h1>
      <small>
        angular: {{vm.env.angularVersion}} |
        angular-formly: {{vm.env.formlyVersion}}
      </small>
      <div>
        <h2>Getting Help Steps</h2>
        <ol>
          <li>
            First, make sure that we don't already have an example for what you're trying to do.
            <a href="http://angular-formly.com">The website</a> has a LOT of examples. Poke around
            to see if we have one for what you're trying to do.
          </li>
          <li>
            Reproduce your question in this jsbin.
            <small>
              Protip: Please format your code.
              In jsbin, if you select all the text,
              then hit <code>shift + tab</code>,
              it will format all the code for you
            </small>
          </li>
          <li>
            Update the steps to reproduce with steps the user takes
            or just a sentence or two describing what you're trying
            to accomplish
          </li>
          <li>
            Copy the link to it without the number.
            For example: <strong>jsbin.com/abcde/3/edit</strong> -> <strong>jsbin.com/abcde/edit</strong>
            which allows you to make updates to the jsbin without updating your links
          </li>
          <li>
            Paste the link in a (well done) question on
            <a href="http://stackoverflow.com/questions/ask?tags=angular-formly">StackOverflow</a>
          </li>
          <li>
            Paste a link to the StackOverflow question into
            <a href="http://chat.angular-formly.com">chat.angular-formly.com</a>
            and ask politely for help.
          </li>
          <li>
            Remove these steps from your question.
          </li>
          <li>Wait patiently while people help you for free :-)</li>
        </ol>
      </div>
      <hr />
      <div>
        <h2>Steps to Reproduce</h2>
        <ol>
          <li>
            Step 1
          </li>
          <li>
            Step 2
          </li>
          <li>
            Step 3
          </li>
        </ol>
      </div>
      <hr />
      <div>
        <h2>Form</h2>
        <form ng-submit="vm.onSubmit()" name="vm.form" novalidate>
          <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form">
            <button type="submit" class="btn btn-primary submit-button" ng-disabled="vm.form.$invalid">Submit</button>
            <button type="button" class="btn btn-default" ng-click="vm.options.resetModel()">Reset</button>
          </formly-form>
        </form>
      </div>
      <hr />
      <div>
        <h2>Model Value</h2>
        <pre>{{vm.model | json}}</pre>
      </div>
      
      <hr />
      
      <div>
        <h2>Form</h2>
        <pre>{{vm.form | json}}</pre>
      </div>
      
      <hr />
      <div>
        <h2>Fields <small>(note, functions are not shown)</small></h2>
        <pre>{{vm.originalFields | json}}</pre>
      </div>
      
      <hr />
      
      <div>
        <h2>Form State</h2>
        <pre>{{vm.options.formState | json}}</pre>
      </div>
    </div>
    <!-- Put custom templates here -->
  </body>
</html>
 
body {
  margin: 20px
}
.formly-field {
  margin-bottom: 16px;
}
 
/* global angular */
(function() {
  'use strict';
  console.clear(); // <-- keep the console clean in jsbin
  var app = angular.module('formlyQuestion', [
    // additional dependencies go here
    'formly',
    'formlyBootstrap'
  ]);
  app.run(function(formlyConfig) {
    // set types here
  });
  app.controller('MainCtrl', function MainCtrl(formlyVersion) {
    var vm = this;
    // funcation assignment
    vm.onSubmit = onSubmit;
    
    // variable assignment
    vm.env = getEnv();
    vm.model = {};
    vm.options = {formState: {}};
    vm.fields = getFields();
    vm.originalFields = angular.copy(vm.fields);
    
    
    vm.foo = {      
      1000: true,
      1021: false,
      3204: true
    };
    
    var bar = 1000;
    
    console.log(vm.foo[bar]);
    // function definition
    function getFields() {
      // return your fields here
      return [
        {
          key: 'firstInput',
          type: 'input',
          templateOptions: {
            label: 'Input',
            placeholder: 'Formly is terrific!'
          },
          expressionProperties: {
            'templateOptions.label': 'model[options.key] || "Input"'
          }
        },
        {
          key: 'text',
          type: 'checkbox',
          templateOptions: {
            label: 'Hidden box'
          },
          hideExpression: function() { return vm.foo[bar] }
        }
      ];
    }
    function onSubmit() {
      vm.options.updateInitialValue();
      alert(JSON.stringify(vm.model), null, 2);
    }
    function getEnv() {
      return {
        angularVersion: angular.version.full,
        formlyVersion: formlyVersion
      };
    }
  });
})();
Output 300px

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

Dismiss x
public
Bin info
kentcdoddspro
0viewers