* Retrieves value from model and updates it in view. * @return {FieldView} Fluent interface
()
| 20 | * @return {FieldView} Fluent interface |
| 21 | */ |
| 22 | updateValue () { |
| 23 | const bytes = this.getModel().getValue() |
| 24 | let string = ByteEncoder.hexStringFromBytes(bytes) |
| 25 | string = StringUtil.chunk(string, 2).join(' ') |
| 26 | this._$input.value = string |
| 27 | return this |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Renders view. |
nothing calls this directly
no test coverage detected