博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[AngularJS] angular-formly: expressionProperties
阅读量:5773 次
发布时间:2019-06-18

本文共 1069 字,大约阅读时间需要 3 分钟。

angular-formly provides a very simple API to dynamically change properties of your field (like disabled, hidden, and required) using the powerful expressionProperties property on your field.

 

(function() {    'use strict';    var app = angular.module('formlyExample', ['formly', 'formlyBootstrap']);    app.controller('MainCtrl', function MainCtrl() {        var vm = this;        vm.model = {};        vm.fields = [            {                type: 'checkbox',                key: "control",                templateOptions: {                    label: 'Click to show'                }            },            {                type: 'input',                key: "nothing",                templateOptions: {                    label: "Show when checkbox checked"                },                expressionProperties: {                    hide: function($viewValue, $modelValue, scope) {                        console.log(scope.model.control);                        return !scope.model.control;                    }                }            }        ];    });})();

 

转载地址:http://hgxux.baihongyu.com/

你可能感兴趣的文章
DLA实现跨地域、跨实例的多AnalyticDB读写访问
查看>>
实时编辑
查看>>
KVO原理分析及使用进阶
查看>>
【348天】每日项目总结系列086(2018.01.19)
查看>>
【294天】我爱刷题系列053(2017.11.26)
查看>>
Microsoft发布了Azure Bot Service和LUIS的GA版
查看>>
Google发布Puppeteer 1.0
查看>>
.NET开源现状
查看>>
可替换元素和非可替换元素
查看>>
2016/08/25 The Secret Assumption of Agile
查看>>
(Portal 开发读书笔记)Portlet间交互-PortletSession
查看>>
搭建vsftpd服务器,使用匿名账户登入
查看>>
AMD改善Linux驱动,支持动态电源管理
查看>>
JAVA中循环删除list中元素的方法总结
查看>>
Java虚拟机管理的内存运行时数据区域解释
查看>>
人人都会深度学习之Tensorflow基础快速入门
查看>>
ChPlayer播放器的使用
查看>>
js 经过修改改良的全浏览器支持的软键盘,随机排列
查看>>
Mysql读写分离
查看>>
Oracle 备份与恢复学习笔记(5_1)
查看>>