Hi,
After a rollout, all the cq:redirect fields are empty in livecopies dialogs, the values are available in the crx though.
Same behavior in we.retail site.
Is there a reason why the paths are not visible in the dialog ?
Thanks,
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
where did you add cq-msm-lockable property?
It should be working
sample e.g.
<ctag
jcr:primaryType="nt:unstructured"
cq:showOnCreate="{Boolean}true"
sling:resourceType="cq/gui/components/coral/common/form/tagfield"
fieldDescription="c_tags description"
fieldLabel="c_tags title"
multiple="{Boolean}true"
name="./ctag"
rootPath="/content/cq:tags/ctags">
<granite:data
jcr:primaryType="nt:unstructured"
cq-msm-lockable="ctag"/>
</ctag>
It is somehow related to cq-msm-lockable that comes with MSM. When I removed the cq-msm-lockable, the value prints properly.
The requirement is to keep the cq-msm-lockable and show the value of the cq:redirect in the dialog.
Hi,
where did you add cq-msm-lockable property?
It should be working
sample e.g.
<ctag
jcr:primaryType="nt:unstructured"
cq:showOnCreate="{Boolean}true"
sling:resourceType="cq/gui/components/coral/common/form/tagfield"
fieldDescription="c_tags description"
fieldLabel="c_tags title"
multiple="{Boolean}true"
name="./ctag"
rootPath="/content/cq:tags/ctags">
<granite:data
jcr:primaryType="nt:unstructured"
cq-msm-lockable="ctag"/>
</ctag>
This is how I add the cq-msm-lockable :
<redirect cq:showOnCreate="{Boolean}true"
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/pathfield"
fieldLabel="fieldLabel"
name="./cq:redirectTarget"
rootPath="/content">
<granite:data
jcr:primaryType="nt:unstructured"
cq-msm-lockable="cq:redirectPath"/>
</redirect>
Views
Replies
Total Likes
It works this way :
<
redirect
cq:showOnCreate
="{Boolean}true"
jcr:primaryType
="nt:unstructured"
sling:resourceType
="granite/ui/components/coral/foundation/form/pathfield"
fieldLabel
="fieldLabel"
name
="./cq:redirectTarget"
rootPath
="/content"
>
<granite:
data
jcr:primaryType
="nt:unstructured"
cq-msm-lockable
="cq:redirectPath"
/>
</
redirect
>
Views
Replies
Total Likes
<
redirect
cq:showOnCreate
="{Boolean}true"
jcr:primaryType
="nt:unstructured"
sling:resourceType
="granite/ui/components/coral/foundation/form/pathfield"
fieldLabel
="fieldLabel"
name
="./cq:redirectTarget"
rootPath
="/content"
>
<granite:
data
jcr:primaryType
="nt:unstructured"
cq-msm-lockable
="cq:redirectTarget"
/>
</
redirect
>
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies