2

我的情况是,我有一个编辑表单,它从网格的选定行中获取其数据。在这种形式中有一些“组合框”类型的字段,我正在使用自动完成属性:

    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...
    }
4

1 回答 1

1

默认情况下,组合仅在扩展时加载商店。在您的情况下,它没有要显示的数据。您可以手动调用存储加载方法或在组合配置中设置自动加载属性。

于 2012-11-26T10:29:09.110 回答