Last active
April 23, 2021 22:20
-
-
Save kuckmc01/409302db2f94a884be0e1d089ced0e94 to your computer and use it in GitHub Desktop.
AEM Touch UI Tab Dialog sample that has placeholders for adding tab content
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
<?xml version="1.0" encoding="UTF-8"?> | |
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" | |
xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" | |
xmlns:nt="http://www.jcp.org/jcr/nt/1.0" jcr:primaryType="nt:unstructured" | |
jcr:title="Compare Products Services" sling:resourceType="cq/gui/components/authoring/dialog" | |
mode="edit" helpPath="style-guide.html#compare-rows-services"> | |
<content | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/foundation/container"> | |
<layout | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/foundation/layouts/tabs" | |
type="nav"/> | |
<items jcr:primaryType="nt:unstructured"> | |
<tab1 | |
jcr:primaryType="nt:unstructured" | |
jcr:title="Text" | |
sling:resourceType="granite/ui/components/foundation/section"> | |
<layout | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/foundation/layouts/fixedcolumns" | |
margin="{Boolean}false"/> | |
<items jcr:primaryType="nt:unstructured"> | |
<column | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/foundation/container"> | |
<items jcr:primaryType="nt:unstructured"> | |
<!-- tab1 insert --> | |
</items> | |
</column> | |
</items> | |
</tab1> | |
<tab2 | |
jcr:primaryType="nt:unstructured" | |
jcr:title="Image Properties" | |
sling:resourceType="granite/ui/components/foundation/section"> | |
<layout | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/foundation/layouts/fixedcolumns" | |
margin="{Boolean}false"/> | |
<items jcr:primaryType="nt:unstructured"> | |
<column | |
jcr:primaryType="nt:unstructured" | |
sling:resourceType="granite/ui/components/foundation/container"> | |
<items jcr:primaryType="nt:unstructured"> | |
<!-- tab2 insert --> | |
</items> | |
</column> | |
</items> | |
</tab2> | |
</items> | |
</content> | |
</jcr:root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
can u provide me the entire zip folder for this component