博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Angular Form] ngModel and ngModelChange
阅读量:6433 次
发布时间:2019-06-23

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

When using Radio button for Tamplate driven form, we want to change to the value change and preform some action.

 

import { Component, Input } from '@angular/core';import { Passenger } from '../../models/passenger.interface';@Component({  selector: 'passenger-form',  styleUrls: ['passenger-form.component.scss'],  template: `    
{
{ detail | json }}
Passenger name:
Passenger ID:
Check in date:
{
{ form.value | json }}
`})export class PassengerFormComponent { @Input() detail: Passenger; toggleCheckIn(checkedIn: boolean) { if (checkedIn) { this.detail.checkInDate = Date.now(); } }}

 

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

你可能感兴趣的文章
Chrome的开发必备小技巧
查看>>
can-i-win(好)
查看>>
Centos6.5下安装protobuf及简单使用
查看>>
[SharePoint] SharePoint 错误集 3
查看>>
高压光耦
查看>>
[转]DPM2012系列之六:在Win7上安装DPM远程管理控制台
查看>>
postgres函数
查看>>
Microsoft AJAX Library Cheat Sheet(5): Number和Error类型的扩展
查看>>
AfxGetMainWnd函数
查看>>
WebView增加一个水平Progress,位置、长相随意
查看>>
easyui messager alert 三秒后自动关闭提示
查看>>
core data 基础操作
查看>>
ORM框架Hibernate (四) 一对一单向、双向关联映射
查看>>
offsetLeft, offsetTop以及postion().left , postion().top有神马区别
查看>>
数据库中触发器before与after认识
查看>>
手动露天广场和立方体
查看>>
随机选择
查看>>
【Java并发编程三】闭锁
查看>>
分布式事务中遇到的 “与基础事务管理器的通信失败”的解决方法
查看>>
让你的Git水平更上一层楼的10个小贴士
查看>>