* Add a field (or label from string), and all prefix and suffix fields, to * the end of the input's field row. * * @param field Something to add as a field. * @param opt_name Language-neutral identifier which may used to find this * field again. Should be unique to the host block
(field: string | Field<T>, opt_name?: string)
| 76 | * @returns The input being append to (to allow chaining). |
| 77 | */ |
| 78 | appendField<T>(field: string | Field<T>, opt_name?: string): Input { |
| 79 | this.insertFieldAt(this.fieldRow.length, field, opt_name); |
| 80 | return this; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Inserts a field (or label from string), and all prefix and suffix fields, |
no test coverage detected