* Extracts field values serialized by Form.serializeValues and * applies them on the respective form fields. * @param {object} data Serialized data * @return {Form} Fluent interface
(data)
| 249 | * @return {Form} Fluent interface |
| 250 | */ |
| 251 | extract (data) { |
| 252 | return this.setFieldValues(this.extractValues(data)) |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * Extracts field values serialized by {@link Form.serializeValues} and |
nothing calls this directly
no test coverage detected