Skip to content

Instantly share code, notes, and snippets.

@fredrick-dominy
Created March 14, 2018 18:11
Show Gist options
  • Save fredrick-dominy/dc99aff25c5bd7b7463ccc6428ba1cd0 to your computer and use it in GitHub Desktop.
Save fredrick-dominy/dc99aff25c5bd7b7463ccc6428ba1cd0 to your computer and use it in GitHub Desktop.
RadioGroup
<radio-group-heading
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/heading"
text="Radio Group Heading"
level="3"/>
<radio-group
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/radiogroup"
deleteHint="{Boolean}false"
vertical="{Boolean}true"
name="./radioGroup">
<items
jcr:primaryType="nt:unstructured">
<radio-1
jcr:primaryType="nt:unstructured"
text="Descriptive Content 1"
value="somevalue"
checked="{Boolean}true"/>
<radio-2
jcr:primaryType="nt:unstructured"
text="Descriptive Content 2"
value="someOtherValue"
checked="{Boolean}false"/>
</items>
</radio-group>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment