我有一个要求,我必须在表单中多次显示来自模型的特定值。但是当我尝试它时,表单只会加载第一个被映射的引用而不是其他引用。
型号代码
Ext.define('USOC',{
extend: 'Ext.data.Model',
fields: [
{name: 'USOCCode', mapping: 'Detail > USOCCode'},
'USOCCode',
'TariffReference',
'Telephone',
'EffectiveDate',
表格代码
items: [{
columnWidth: 0.4,
margin: '3 0 0 10',
xtype: 'container',
layout:'anchor',
height: 280,
defaults: {
labelWidth: 150
},
defaultType: 'textfield',
items: [{
xtype: 'container',
layout: 'hbox'
},
{
xtype: 'fieldset',
title: 'Recurring Charge Footnote Key',
columnWidth:1.5,
layout: 'column',
defaultType: 'textfield',
width:1285,
//height:200,
defaults: {
labelWidth: 120,
margin: '3 0 0 40',
fieldStyle:"border:none 0px black",
readOnly: true
},
items: [{
fieldLabel: 'Universal Service Ordering Code',
name: 'USOCCode',
width: 350,
labelWidth: 180
},{
fieldLabel: 'Footnote Key',
name: 'FootnoteKey',
width: 250
},{
fieldLabel: 'Description',
name: 'Description1',
width: 500
}]
},
{
xtype: 'fieldset',
title: 'Non - Recurring Charge Footnote Key',
columnWidth:1.5,
layout: 'column',
defaultType: 'textfield',
width:1285,
//height:200,
defaults: {
labelWidth: 120,
margin: '3 0 0 40',
fieldStyle:"border:none 0px black",
readOnly: true
},
items: [{
fieldLabel: 'Universal Service Ordering Code',
name: 'USOCCode',
width: 350,
labelWidth: 180
},{
fieldLabel: 'Footnote Key',
name: 'FootnoteKey1',
width: 250
},{
fieldLabel: 'Description',
name: 'Description2',
width: 500
}]
在上面的代码中,我试图为 fieldSet 'Recurring Charge Footnote Key' 和 'Non - Recurring Charge Footnote Key' 显示 USOCCode。但是该值仅显示在第一个引用中,而不是第二个引用中。我在 API 上读到该名称必须是唯一的,但如果我必须显示两次,是否有相同的解决方法?
提前致谢