我将/ libs / foundation / components / page / tab_basic / items / basic / items / tags中的tags字段复制到我的组件对话框中。我能够看到下拉列表中填充的标签,也可以选择。我需要将所选标签存储在页面属性中(在jcr:content node下)。是否有任何财产要求这样做。
答案 0 :(得分:1)
标签会自动保存在多值String属性中:
yourpage-> JCR:内容 - > CQ:标签
你可以用crxde light检查它:
http://localhost:4502/crx/de/index.jsp
如果在dialog.xml中使用TagInputField xtype:
<tags jcr:primaryType="cq:Widget"
fieldLabel="Tags"
name="./cq:tags"
xtype="tags">
</tags>