我正在研究AEM 6.1 我的问题是当我选择它时,所选选项无法显示字符。 但下拉列表会显示正确的字符。
从服务器返回的是带有值的JSON对象
{"text":"Дру
;гое","value":"?somequeryparametershere"}
我需要在dialog.xml
中配置一些内容吗?
我检查了xtype="selection"
的允许属性,这有助于渲染字符或将其编码为utf-8但无法从此链接中找到任何https://docs.adobe.com/docs/en/cq/5-6/widgets-api/index.html?class=CQ.form.Selection#CQ.form.Selection-options
对话框定义
<items jcr:primaryType="cq:WidgetCollection">
<pageCategory
jcr:primaryType="cq:Widget"
fieldLabel="Page Category"
fieldDescription="A reload is required for changes to take effect. If changed: Press OK and then reload the page" defaultValue="Global select configured"
name="./pageCategory"
options="$PATH.categories.json"
type="select"
xtype="selection"/>
</items>
提前致谢!