日期:2014-05-16 浏览次数:20455 次
{
id: 'template_code',
fieldLabel: '模板',
xtype: 'combo',
name: 'template_code',
store: templatestore,
valueField: 'template_code',
displayField: 'template_name',
emptyText: '选择状态...',
queryMode:'local', //请求本地加载好的store,不发送后台请求
selectOnFocus: true,
forceSelection: true,
editable: false,
allowBlank: false,
listeners: {
change: function(){
//取得下拉框显示的名赋值给另一个元素
Ext.getCmp("template_name").setValue(Ext.getCmp("template_code").getRawValue());
}
}
}