我的应用程序中有一个网格,我想在更改网格选择后填充表单。我在我的表单上使用方法 loadRecord(),它对除组合框以外的所有字段都工作得很好。选择中的组合框 ID 以及组合框 ID 已正确附加。
组合框配置:
{
xtype: 'combobox',
fieldLabel: this.T('dep_type'),
name: 'type_id',
displayField:'name',
valueField:'id',
editable: false,
forceSelection: true,
store: 'main.department.components.Types'
}
您能否就这个问题提供帮助。