Last active
August 17, 2016 17:30
-
-
Save kuckmc01/b6e0b0823da286910916511611f7e646 to your computer and use it in GitHub Desktop.
Common Touch UI Dialog XML snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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