* Retrieves value from model and updates it in view. * @return {FieldView} Fluent interface
()
| 24 | * @return {FieldView} Fluent interface |
| 25 | */ |
| 26 | updateValue () { |
| 27 | const value = this.getModel().getValue() |
| 28 | this._$input.value = value.toString() |
| 29 | this._updateValueDisplay() |
| 30 | return this |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Retrieves the value description from the model and updates it in view. |
nothing calls this directly
no test coverage detected