用extjs做性别的下拉列表
1个回答
展开全部
用combobox很简单啊。
var data = [['male','男'],['female','女']];
var store = new Ext.data.SimpleStore({fields:['key','value'],data:data});
var hpCombo=new Ext.form.ComboBox({
fieldLabel:'性别',
id:"sex",
displayField:'value',
valueField:'key',
value:'男',
store: store,
triggerAction: 'all',
lazyRender:true,
width:100,
typeAhead: true,
selectOnFocus:true,
// emptyText:'选择性别...',
allowBlank:true,
mode:'local',
editable:true
});
PS.你这个问题提在英语翻译里 ,放错地方了。
var data = [['male','男'],['female','女']];
var store = new Ext.data.SimpleStore({fields:['key','value'],data:data});
var hpCombo=new Ext.form.ComboBox({
fieldLabel:'性别',
id:"sex",
displayField:'value',
valueField:'key',
value:'男',
store: store,
triggerAction: 'all',
lazyRender:true,
width:100,
typeAhead: true,
selectOnFocus:true,
// emptyText:'选择性别...',
allowBlank:true,
mode:'local',
editable:true
});
PS.你这个问题提在英语翻译里 ,放错地方了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询