87,991
社区成员
发帖
与我相关
我的任务
分享var showcity=new Ext.data.JsonStore({ //城市片区当中,加载城市
autoLoad:true,
fields:["name"],
proxy:{
type:'ajax',
url:'city.php',
reader:{
type:'json'
}
}
})
/////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////
new Ext.form.Panel({
layout:'column',
baseCls:'x-plain',
items:[
{xtype:'combo',fieldLabel:'城区',labelWidth:30,width:200,emptyText:'请输入城区',allowBlank:false,store:showcity,displayField:'name',queryMode:'local',triggerAction:'all' },
{xtype:'button',text:'添加'}
]
})