Initializes the given field.
(field: Field)
| 330 | |
| 331 | /** Initializes the given field. */ |
| 332 | private initField(field: Field) { |
| 333 | if (this.sourceBlock.rendered) { |
| 334 | field.init(); |
| 335 | } else { |
| 336 | field.initModel(); |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | /** |
| 341 | * Sever all links to this input. |
no test coverage detected