我正在使用 ExtJS 4.1,我需要创建一个包含客户列表的组合框,并且我想在其中设置一个特定的预选项目,但我不知道该怎么做。这是创建我的组合框的代码:
xtype: 'combobox',
fieldLabel: 'customer',
name: 'customer_id',
allowBlank:false,
afterLabelTextTpl: required,
//data store
store: Ext.create('Ext.data.Store', {
autoDestroy: true,
model: 'customer_model',
autoLoad: true,
proxy: {
type: 'ajax',
url: 'load.php?item=customer',
reader: {
type: 'json',
successProperty: 'success',
root: 'data'
}
}
}),
valueField: 'id',
displayField: 'company',
typeAhead: true,
queryMode: 'remote',
emptyText: ''
如您所见,我的组合框由数据存储填充,该数据存储基于名为“customer_model”的数据模型构建。这是数据模型的代码:
Ext.define('customer_model', {
extend: 'Ext.data.Model',
fields: [
{type: 'int', name: 'id'},
{type: 'string', name: 'company'},
{type: 'string', name: 'vat'},
{type: 'string', name: 'ssn'},
{type: 'int', name: 'ref_id'}
]
});
好吧,我想配置我的组合框,以便在加载页面时自动选择某个项目,例如 id 等于 1 的客户。谁能帮我 ?提前致谢。恩里科。