我正在使用组合框。如何在另一个文本字段中获取所选数据的ID ...
这是我的示例代码。 这是我的组合框字段
{
fieldLabel: 'Country',
name: 'idCountry',
xtype: 'combo',
margin: '0 0 10',
labelAlign: 'right',
validateBlank: true,
displayField: 'countryName',
valueField: 'idCountry',
store: 'country.Country',
},
这是我希望存储idCountry的textfield代码。
{
fieldLabel: 'Country Id',
name: 'temp_id_countrt',
xtype: 'textfield',
margin: '0 0 10',
labelAlign: 'right',
validateBlank: true,
},
谢谢和问候.. Gar
答案 0 :(得分:0)
config: {
idCountry: null,
},
constructor : function (config) {
this.initConfig(config);
this.callParent(arguments);
},
{
xtype: 'textfield',
name : 'id',
fieldLabel: 'Country Id',
value: this.getidCountry()
},