Skip to content

Instantly share code, notes, and snippets.

@kuckmc01
Last active August 17, 2016 17:30
Show Gist options
  • Save kuckmc01/b6e0b0823da286910916511611f7e646 to your computer and use it in GitHub Desktop.
Save kuckmc01/b6e0b0823da286910916511611f7e646 to your computer and use it in GitHub Desktop.
Common Touch UI Dialog XML snippets
<!-- checkbox -->
<checkbox
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/form/checkbox"
fieldDescription="Checking will add a check icon"
name="./checkbox"
text="Add Checkbox"
value="true"/>
<!-- simple fieldset no title -->
<fieldset jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/form/fieldset">
<layout jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/layouts/fixedcolumns"
method="absolute" />
<items jcr:primaryType="nt:unstructured">
<!-- add items here -->
</items>
</fieldset>
<!-- simple select -->
<select jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/form/select"
fieldDescription="Description"
fieldLabel="Label"
name="./select">
<items jcr:primaryType="nt:unstructured">
<empty jcr:primaryType="nt:unstructured" text="" value=""/>
<option1 jcr:primaryType="nt:unstructured" text="Option 1" value="super" />
<option2 jcr:primaryType="nt:unstructured" text="Option 2" value="awesome" />
</items>
</select>
<note
jcr:primaryType="nt:unstructured"
sling:resourceType="cq/gui/components/authoring/dialog/note"
note="This is a note"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment