我在一些cq5 dialog.xml中有以下标记:
<text jcr:primaryType="cq:Widget" fieldLabel="label" name="./text"
maxLength="150" xtype="textfield" value ="This text has to be displayed in the input field"/>
现在,当我调用对话框时,我希望看到以下内容:
但是Inputfiled是空的:(
任何想法?
答案 0 :(得分:2)
使用defaultValue
属性:
<text
jcr:primaryType="cq:Widget"
fieldLabel="label"
name="./text"
maxLength="150"
xtype="textfield"
defaultValue="This text has to be displayed in the input field" />
可以在CQ5 Widgets API文档中找到更多信息。