如何在输入字段中显示文本字段?

时间:2014-02-05 10:46:53

标签: extjs cq5 crx

我在一些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"/>

现在,当我调用对话框时,我希望看到以下内容: enter image description here

但是Inputfiled是空的:(

任何想法?

1 个答案:

答案 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文档中找到更多信息。