在多字段中隐藏重新排序按钮
Hide reorder button in a multifield
我有一个带有自定义 xtype 的多字段对话框。根据要求,我不需要多字段元素的重新排序功能。有没有办法隐藏这些按钮。
对话框xml如下
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root 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="cq:Dialog"
height="{Long}800"
width="{Long}1200"
xtype="dialog">
<items
jcr:primaryType="cq:Widget"
xtype="tabpanel">
<items jcr:primaryType="cq:WidgetCollection">
<tabs
jcr:primaryType="cq:Panel"
title="Questions & Answers">
<items jcr:primaryType="cq:WidgetCollection">
<tabs
jcr:primaryType="cq:Widget"
addItemLabel="Add a question"
fieldDescription="Note: 
1. Add the questions first in a row.
2. Please select answer type before start adding the answers."
name="./questionStack"
xtype="multifield">
<fieldConfig
jcr:primaryType="nt:unstructured"
xtype="apps.nirmal.widgets.configurableQandAfield"/>
</tabs>
</items>
</tabs>
</items>
</items>
</jcr:root>
只需在 https://docs.adobe.com/docs/en/cq/5-6/widgets-api/index.html
查看 API 文档
您在多字段配置属性中看到一个布尔值 属性 以禁用排序:
orderable : Boolean
If the list of fields should be orderable and Up/Down buttons are
rendered (defaults to true).
我有一个带有自定义 xtype 的多字段对话框。根据要求,我不需要多字段元素的重新排序功能。有没有办法隐藏这些按钮。
对话框xml如下
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root 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="cq:Dialog"
height="{Long}800"
width="{Long}1200"
xtype="dialog">
<items
jcr:primaryType="cq:Widget"
xtype="tabpanel">
<items jcr:primaryType="cq:WidgetCollection">
<tabs
jcr:primaryType="cq:Panel"
title="Questions & Answers">
<items jcr:primaryType="cq:WidgetCollection">
<tabs
jcr:primaryType="cq:Widget"
addItemLabel="Add a question"
fieldDescription="Note: 
1. Add the questions first in a row.
2. Please select answer type before start adding the answers."
name="./questionStack"
xtype="multifield">
<fieldConfig
jcr:primaryType="nt:unstructured"
xtype="apps.nirmal.widgets.configurableQandAfield"/>
</tabs>
</items>
</tabs>
</items>
</items>
</jcr:root>
只需在 https://docs.adobe.com/docs/en/cq/5-6/widgets-api/index.html
查看 API 文档您在多字段配置属性中看到一个布尔值 属性 以禁用排序:
orderable : Boolean
If the list of fields should be orderable and Up/Down buttons are rendered (defaults to true).