src/ng-xform/fields/custom-field.ts
Properties |
|
constructor(options: CustomField
|
||||||||
Defined in src/ng-xform/fields/custom-field.ts:6
|
||||||||
Parameters :
|
Public controlType |
controlType:
|
Default value : 'CUSTOM'
|
Defined in src/ng-xform/fields/custom-field.ts:5
|
Public tmpl |
tmpl:
|
Type : TemplateRef<any>
|
Defined in src/ng-xform/fields/custom-field.ts:6
|
import { TemplateRef } from '@angular/core';
import { DynamicField } from './dynamic-field';
export class CustomField<T = any> extends DynamicField<T> {
public controlType ? = 'CUSTOM';
public tmpl: TemplateRef<any>;
constructor(options: CustomField<T>) {
super(options);
this.tmpl = options.tmpl;
}
}