如何在对话框中显示从Sliderfield xtype中选择的值?

时间:2017-01-14 12:39:36

标签: cq5 aem

我正在使用sliderfield xtype,允许作者选择一个值。目前作者并不知道当前选择的值。有没有办法将值显示为显示为here的气泡或滑块外的单独文本值?下面是对话框。

               <backgroundAlpha
                    jcr:primaryType="cq:Widget"
                    fieldLabel="Background Alpha (Opacity)"
                    increment="1"
                    maxValue="{Long}100"
                    minValue="{Long}0"
                    name="./backgroundAlpha"
                    useTips="{Boolean}true"
                    xtype="sliderfield"/>

1 个答案:

答案 0 :(得分:0)

我刚使用以下代码获取属性并能够在页面中显示。默认对话框已显示所选值。

<% if(properties.get("sliderfield")!=null){%> Here is your sliderfield FIELD DATA:: <%=properties.get("sliderfield")%> <%}%>

SliderDialog enter image description here