ext 中的comboBox怎样可以设置为编辑并能使用button获取编辑的值
1个回答
展开全部
id : "race",
fieldLabel : "民族",
store : mzstore,
valueField : 'id',
displayField : 'name',
mode : 'local',
triggerAction : "all",
width : 120
//获取下拉框选中的记录的displayField
var a = Ext.getCmp('race').getRawValue();
//获取下拉框选中的记录的valueField
var b = Ext.getCmp('race').getValue();
//设置下拉框选中的值,要用valueField的值set
Ext.getCmp('race').setValue(valueField);
fieldLabel : "民族",
store : mzstore,
valueField : 'id',
displayField : 'name',
mode : 'local',
triggerAction : "all",
width : 120
//获取下拉框选中的记录的displayField
var a = Ext.getCmp('race').getRawValue();
//获取下拉框选中的记录的valueField
var b = Ext.getCmp('race').getValue();
//设置下拉框选中的值,要用valueField的值set
Ext.getCmp('race').setValue(valueField);
追问
我从Store中获取了一个集合我把它放在了comboBox中现在在当前的情况下修改comboBox中的值,我一点击button它的值又恢复为原来comboBox中读取的值了,还是不能编辑啊,并且点击button它还存在
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询