control
control: object
class
class: string = concat(TEXT_FIELD, this.attrs.ww.class)
disabled
disabled: boolean = (this.attrs.ww.disabled === true) ? true : null
focus
focus: boolean = this.attrs.ww.focus
id
id: string = "control"
name
name: string = this.attrs.ww.name
oninput
oninput: (Anonymous function) = this.attrs.ww.onChange ? oninput(this) : () => { }
placeholder
placeholder: string = this.attrs.ww.placeholder || ''
readOnly
readOnly: boolean = (this.attrs.ww.readOnly === true) ? true : null
rows
rows: number = this.attrs.ww.rows || 1
type
type: string = this.attrs.ww.type || 'text'
value
value: string = this.attrs.ww.value || ''
TextField provides a wrapped native text input control.