-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FORMS-9688 add checkbox proxy component
- Loading branch information
barshatr
committed
Sep 5, 2023
1 parent
2f1d69c
commit 704bf3f
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
...ps/src/main/content/jcr_root/apps/__appId__/components/adaptiveForm/checkbox/.content.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?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" | ||
jcr:description="Adaptive Form Check Box (v1) component" | ||
jcr:primaryType="cq:Component" | ||
jcr:title="Check Box" | ||
sling:resourceSuperType="core/fd/components/form/checkbox/v1/checkbox" | ||
componentGroup="${appTitle} - Adaptive Form"/> |
8 changes: 8 additions & 0 deletions
8
...rc/main/content/jcr_root/apps/__appId__/components/adaptiveForm/checkbox/_cq_template.xml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<jcr:root xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" xmlns:cq="http://www.day.com/jcr/cq/1.0" | ||
jcr:primaryType="nt:unstructured" | ||
jcr:title="Check Box" | ||
fieldType="checkbox" | ||
checkedValue="on" | ||
uncheckedValue="off"/> | ||
|