本文整理汇总了TypeScript中angular2/common.Control类的典型用法代码示例。如果您正苦于以下问题:TypeScript Control类的具体用法?TypeScript Control怎么用?TypeScript Control使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Control类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: checkNameAndTitle
static checkNameAndTitle(control : Control){
if(control.find("name").value === control.find("title").value)
return {titleAndName : {title: control.find("title").value}, name : control.find("name").value};
return null;
}
开发者ID:MishDish,项目名称:angular2-modelForm,代码行数:7,代码来源:validation.ts
示例2: it
it('resets a control', () => {
let control: Control = new Control('');
let returnedControl: AbstractControl = null;
control.markAsTouched();
control.updateValue('dave');
returnedControl = Utils.resetControl(control);
expect(returnedControl.touched).toBe(false);
expect(returnedControl.untouched).toBe(true);
expect(returnedControl.pristine).toBe(true);
expect(returnedControl.dirty).toBe(false);
expect(returnedControl.value).toBe('');
});
开发者ID:BilelKrichen,项目名称:clicker,代码行数:12,代码来源:utils.spec.ts
示例3: setTimeout
setTimeout(()=> {
this.formDir.form.addControl(this.field.name,this.fieldControl);
let value:any = '';
if(this.entity && this.entity.extraFields && this.entity.extraFields[this.field.name]) {
value = this.entity.extraFields[this.field.name];
} else if(this.field.hasValue()) {
value = this.field.value;
this.entity.extraFields[this.field.name] = value;
}
if(!this.field.isTypeFile()) {
this.fieldControl.updateValue(value);
}
}, 0);
开发者ID:kamfasage,项目名称:angular-spring-dynamic-form,代码行数:14,代码来源:extra-field.ts
示例4: setTimeout
setTimeout(() => {
this.control && this.control.updateValueAndValidity({ onlySelf: true, emitEvent: false });
});
开发者ID:jochenlogghe,项目名称:ANGULAR2EXERCISES,代码行数:3,代码来源:not-before.directive.ts
示例5:
.subscribe(movie =>{
this.id.updateValue(movie.id);
this.title.updateValue(movie.title);
this.rating.updateValue(movie.rating);
this.length.updateValue(movie.length)
});
开发者ID:LatinWarrior,项目名称:AtTheMovies,代码行数:6,代码来源:movie-edit.ts
示例6:
this.friendStore.addFriend(this.form.value).subscribe( createdFriend => {
this.firstname.updateValue('');
this.lastname.updateValue('');
})
开发者ID:spock123,项目名称:angular2-observable-store,代码行数:4,代码来源:add-friend.component.ts
注:本文中的angular2/common.Control类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论