GitHub

FormRadioGroup

Examples

Selected Value: ""

<FormRadioGroup
  @label="Grouped radio buttons"
  @value={{this.value}}
  @onChange={{this.setValue}}
  @errors={{this.validationErrors}}
  as |Radio|
>
  <Radio @value={{true}} @label="Yes" />
  <Radio @value={{false}} @label="No" />
  <Radio @value="maybe" @label="Maybe" />
</FormRadioGroup>

<p class="mt-4">Selected Value: "{{this.value}}"</p>

API

FormRadioGroup

Element: HTMLDivElement

Arguments

Name Type Default Description
value * enum -
containerClass string - CSS classes to be added in the container element
errors enum - A list of errors or a single text describing the error
hasError boolean - If has errors
hasSubmitted boolean - If the form has been submitted, used to force displaying errors
hint string - A help text to be displayed
isInline boolean - If the Checkbox should be in one line
label string - The group label
onChange function - Default callback added to the yielded FormRadio component, called when onchange is triggered
showError boolean - Force displaying errors
size enum - The size

Blocks

Name Type Default Description
default * Array -
Released under MIT License - Created by Josemar Luedke