{{#validated-form model=(changeset model.user UserValidations) on-submit = (action "submit") submit-label = 'Save' as |f|}} {{#f.input name='height' label='height' as |fi|}}
{{input value=fi.value change=(action fi.update value="target.value")}} kg
{{/f.input}} {{#f.input name='weight' label='weight' as |fi|}}
{{one-way-input fi.value update=fi.update}} kg
{{/f.input}} {{f.submit label="Save" disabled=f.model.isInvalid}}

Height in model: {{model.user.height}}
Height in changeset: {{f.model.height}}

Weight in model: {{model.user.weight}}
Weight in changeset: {{f.model.weight}}

{{/validated-form}}