zoukankan      html  css  js  c++  java
  • [AngularJS] angular-formly: Extending Types

    Extending types is one of the ways that makes angular-formly help you keep your Angular forms DRY. When use responsibly, they can make it much easier to manage common types, allowing you to add a bit of functionality to a common type.

    (function() {
    
        'use strict';
    
        var app = angular.module('formlyExample', ['formly', 'formlyBootstrap']);
        
        app.run(function(formlyConfig) {
            formlyConfig.setType({
                name: 'avengersSelect',
                extends: 'select',
                defaultOptions: {
                    templateOptions: {
                        label: 'Favorite Avenger',
                        options: [
                            {name: 'Iron Man', value: 'iron_man'},
                            {name: 'Captain America', value: 'captain_america'},
                            {name: 'Black Widow', value: 'black_widow'},
                            {name: 'Hulk', value: 'hulk'},
                            {name: 'Thor', value: 'thor'}
                        ]
                    }
                }
            });
        })
    
        app.controller('MainCtrl', function MainCtrl($timeout) {
            var vm = this;
            vm.model = {};
            vm.fields = [
                {
                    type: 'avengersSelect',
                    key: "avengersSelect"
                },
                {
                    type: 'avengersSelect',
                    key: "avengersSelect2",
                    templateOptions: {
                        label: 'Favorite Avenger 2',
                        options: [
                            {name: 'Iron Man', value: 'iron_man'},
                            {name: 'Captain America', value: 'captain_america'},
                            {name: 'Black Widow', value: 'black_widow'},
                            {name: 'Hulk', value: 'hulk'},
                            {name: 'Thor', value: 'thor'}
                        ]
                    }
                }
    
            ];
        });
    })();
  • 相关阅读:
    《代码大全2》阅读笔记02
    《代码大全2》阅读笔记01
    第二阶段冲刺第六天
    学习进度5
    构建之法阅读笔记03
    地铁进度记录
    学习进度4
    个人数组
    学习进度3
    构建之法阅读笔记02
  • 原文地址:https://www.cnblogs.com/Answer1215/p/4518666.html
Copyright © 2011-2022 走看看