File

src/ng-xform/fields/text-field.ts

Extends

DynamicField

Index

Properties

Constructor

constructor(options: TextField)
Parameters :
Name Type Optional Description
options TextField<T>

Properties

Public controlType
controlType:
Default value : 'TEXT'
Public type
type: string
Type : string
import { DynamicField } from './dynamic-field';

export class TextField<T = any> extends DynamicField<T> {
  public controlType ? = 'TEXT';
  public type?: string;

  constructor(options: TextField<T>) {
    super(options);
    this.type = options.type || 'text';
  }
}

results matching ""

    No results matching ""