Extjs combo 中设置了 hiddenName 后台取不到真实值(id值) ? 总是得到显示(Name值)
表单中的combo:xtype:"combo",fieldLabel:"姓别",store:newExt.data.SimpleStore({autoLoad:true,...
表单中的combo :
xtype : "combo",
fieldLabel : "姓别",
store : new Ext.data.SimpleStore({
autoLoad :true,
fields : ['Id', 'Name'],
data : [['1', '男'], ['2', '女'],['9', '未说明的性']]
}),
name:"rec_sex",
hiddenName:"rec_sex",
width:130,
mode : 'local',
displayField : "Name",
valueField : "Id",
triggerAction : 'all',
emptyText : "请选择"
表单从表格中加载数据:
edit_ba_form.getForm().loadRecord(rec);
表单提交:
buttons:[{text:"提交",
handler:function(){
var v= edit_ba_form.getForm().findField("rec_zyks").getValue();
alert(v)
edit_ba_form.getForm().submit({
url:"BAGL/updateBaglInfo.action",
method: 'POST'
});
}
}
后台Action类:
public class BaglinfoAction extends ActionSupport {
private String rec_sex;
试了很少种方法都不行, 是不是store 没有加载到内存的原因 展开
xtype : "combo",
fieldLabel : "姓别",
store : new Ext.data.SimpleStore({
autoLoad :true,
fields : ['Id', 'Name'],
data : [['1', '男'], ['2', '女'],['9', '未说明的性']]
}),
name:"rec_sex",
hiddenName:"rec_sex",
width:130,
mode : 'local',
displayField : "Name",
valueField : "Id",
triggerAction : 'all',
emptyText : "请选择"
表单从表格中加载数据:
edit_ba_form.getForm().loadRecord(rec);
表单提交:
buttons:[{text:"提交",
handler:function(){
var v= edit_ba_form.getForm().findField("rec_zyks").getValue();
alert(v)
edit_ba_form.getForm().submit({
url:"BAGL/updateBaglInfo.action",
method: 'POST'
});
}
}
后台Action类:
public class BaglinfoAction extends ActionSupport {
private String rec_sex;
试了很少种方法都不行, 是不是store 没有加载到内存的原因 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询