1.3 KiB
1.3 KiB
FormFieldGroups
FormFieldGroups
components are field groups associated with a particular model. They render individual FormField
components.
Param | Type | Default | Description |
---|---|---|---|
[renderGroup] | String |
|
A whitelist of groups to include in the render. |
model | DS.Model |
|
Model to be passed down to form-field component. If fieldGroups is present on the model then it will be iterated over and groups of FormField components will be rendered. |
onChange | Func |
|
Handler that will get set on the FormField component. |
Example
{{if model.fieldGroups}}
<FormFieldGroups @model={{model}} />
{{/if}}
...
<FormFieldGroups
@model={{mountModel}}
@onChange={{action "onTypeChange"}}
@renderGroup="Method Options"
/>
See