gpt4 book ai didi

aem - 多字段组件问题

转载 作者:行者123 更新时间:2023-12-04 18:06:22 26 4
gpt4 key购买 nike

我正在创建一个具有 2 个文本字段的多字段组件。以下是我的对话框 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"
jcr:primaryType="cq:Dialog"
title="dialog"
xtype="dialog">
<items jcr:primaryType="cq:WidgetCollection">
<links
jcr:primaryType="cq:Widget"
fieldLabel="QuickLinks"
name="./links"
xtype="multifield">
<fieldConfig
jcr:primaryType="cq:Widget"
xtype="multifield">
<items jcr:primaryType="cq:WidgetCollection">
<title
jcr:primaryType="cq:Widget"
fieldLabel="Title"
hideLabel="{Boolean}false"
name="./jcr:title"
xtype="textfield"/>
<url
jcr:primaryType="cq:Widget"
fieldLabel="URL"
name="./jcr:url"
xtype="textfield"/>
</items>
</fieldConfig>
</links>
</items>
</jcr:root>

我能够编辑内容,并且内容被保存。但是我有两个问题 - 1) 当对话框加载时,它总是空的,当我重新打开对话框时它不显示保存的内容 2) 向上和向下箭头不再起作用。任何解决这些问题的建议都非常感谢。非常感谢。

最佳答案

多字段 xtype 的字段配置仅包含一项(即您可以在其中包含一个文本字段。配置多个值时,它们将存储为称为链接的多值属性,当仅配置一个值时,它将存储为单值属性称为链接的属性)。在您的多字段中配置的整个数据将作为链接属性存储在您的节点中。您将无法将它们作为“jcr:title”和“jcr:url”获取。

您应该创建一个自定义 xtype 说“linksXtype”,将“jcr:title”和“jcr:url”存储为一个由某种模式分隔的单个字符串,例如“***”(“jcr:title***jcr:url” )。

您可以在此处找到创建自定义 xtype 的详细信息:link

xtype 可以这样创建:

Ejst.CustomWidget = CQ.Ext.extend(CQ.form.CompositeField, {

/**
* @private
* @type CQ.Ext.form.TextField
*/
hiddenField: null,

/**
* @private
* @type CQ.Ext.form.ComboBox
*/
jcrtitle: null,

/**
* @private
* @type CQ.Ext.form.TextField
*/
jcrurl: null,

constructor: function(config) {
config = config || { };
var defaults = {
"border": false,
"layout": "table",
"columns":2
};
config = CQ.Util.applyDefaults(config, defaults);
Ejst.CustomWidget.superclass.constructor.call(this, config);
},

// overriding CQ.Ext.Component#initComponent
initComponent: function() {
Ejst.CustomWidget.superclass.initComponent.call(this);

this.hiddenField = new CQ.Ext.form.Hidden({
name: this.name
});
this.add(this.hiddenField);

this.jcrtitle = new CQ.Ext.form.TextField({
fieldLabel:"Jcr url",
cls:"ejst-customwidget-1",
listeners: {
change: {
scope:this,
fn:this.updateHidden
}
},
optionsProvider: this.optionsProvider
});
this.add(this.jcrtitle);

this.jcrurl = new CQ.Ext.form.TextField({
fieldLabel:"Jcr Title",
cls:"ejst-customwidget-2",
listeners: {
change: {
scope:this,
fn:this.updateHidden
}
}
});
this.add(this.jcrurl);

},


// overriding CQ.form.CompositeField#setValue
setValue: function(value) {
var parts = value.split("/");
this.jcrtitle.setValue(parts[0]);
this.jcrurl.setValue(parts[1]);
this.hiddenField.setValue(value);
},

// overriding CQ.form.CompositeField#getValue
getValue: function() {
return this.getRawValue();
},

// overriding CQ.form.CompositeField#getRawValue
getRawValue: function() {

return this.jcrtitle.getValue() + "***" +
this.jcrurl.getValue();
},

// private
updateHidden: function() {
this.hiddenField.setValue(this.getValue());
}
});

// register xtype
CQ.Ext.reg('linksXtype', Ejst.CustomWidget);

将 dialog.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"
jcr:primaryType="cq:Dialog"
title="dialog"
xtype="dialog">
<items jcr:primaryType="cq:WidgetCollection">
<links
jcr:primaryType="cq:Widget"
fieldLabel="QuickLinks"
name="./links"
xtype="multifield">
<fieldConfig
jcr:primaryType="cq:Widget"
xtype="linksXtype">
</fieldConfig>
</links>
</items>
</jcr:root>

要获取值,请遍历存储为 links 属性的字符串数组,并按“***”拆分每个字符串

编辑 :

Adobe ACS-Commons 包下的咨询服务提供了更优雅的 多场面板小部件来处理这个用例。它简化了方法并消除了为每个必需字段组合编写自定义 xtype 的需要。数据以 JSON 格式存储,并带有标签库以从节点中提取数据。链接: http://adobe-consulting-services.github.io/acs-aem-commons/features/widgets.html#multi-field-panel-since-150

关于aem - 多字段组件问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26290908/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com