我的情况是,我有一个编辑表单,它从网格的选定行中获取其数据。在这种形式中有一些“组合框”类型的字段,我正在使用自动完成属性:
xtype: 'combobox',
store: 'Paciente',
forceSelection: true,
typeAhead: true,
pageSize: 10,
fieldLabel: 'Paciente',
name: 'paciente_id',
valueField: 'id',
displayField: 'nome',
allowBlank: false,
afterLabelTextTpl: required
这是我的商店:
Ext.define('App.store.Paciente', {
extend: 'Ext.data.Store',
model: 'App.model.Paciente',
pageSize: 10,
proxy: {
type: 'rest',
format: 'json',
url: 'pacientes',
reader: {
root: 'pacientes',
totalProperty: 'totalCount'
}
}
});
该组合在使用时有效。但是当我在网格中选择一条线时,所有字段都会被填充,但组合不会。
gridSelectionChange: function(model, records) {
if (records[0]) {
this.getForm().load(records[0]);
}
},
加载表单后,如何正确填写此组合?
更新 1:工作代码
我必须为每个组合框手动执行此操作。我以为这是一种自动方式..
if (records[0]) {
this.getForm().loadRecord(records[0]);
//updating current value for combo paciente
this.getStore('Paciente').add({nome: records[0].get('nome'), id: records[0].get('id')});
this.getCombopaciente().select(records[0].get('paciente_id'));
//updating current value for combo XYZ...
}