我试图在文件夹设置中添加一些字段。
为此,我在我的应用程序中覆盖了文件“/libs/dam/gui/content/assets/foldersharewizard”。添加了一个新选项卡和 2 个新复选框。出现新的选项卡和字段,但它们既不将其值保存在文件夹节点也不保存在 jcr 中。我尝试修改默认字段,当我更改名称时,我只是停止工作。
这是我在文件夹共享向导中添加的代码:
<tab5
jcr:primaryType="nt:unstructured"
jcr:title="Tab title"
sling:resourceType="granite/ui/components/foundation/container">
<items jcr:primaryType="nt:unstructured">
<editDeny
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/form/checkbox"
id="editDeny"
name="custom:deniedEdit"
text="Hide edit"
value="{Boolean}true"/>
<delAllow
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/form/checkbox"
id="delAllow"
name="custom:allowedDel"
text="Show delete"
value="{Boolean}true"/>
</items>
由于 AEM 文档大多是废话,而且互联网上没有很多开发人员评论......我没有想法,如果你们中的任何人遇到同样的问题或知道我错过了什么,那就太好了。
您希望我粘贴的任何其他内容......但这只是我添加的所有代码。
谢谢你。