欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Extjs4中Form的使用之本地hiddenfield

 更新時(shí)間:2013年11月26日 16:27:59   作者:  
Extjs4中Form的使用之本地hiddenfield實(shí)例,具體實(shí)現(xiàn)如下,需要的朋友不要錯(cuò)過
復(fù)制代碼 代碼如下:

Ext.onReady(function(){
Ext.QuickTips.init();
Ext.create("Ext.form.Panel",{
title:'本地hiddenfield實(shí)例',
renderTo:'formDemo',
bodyPadding:'5 5 5 5',
height:100,
width:270,
frame:true,
defaults:{
labelSeparator :": ",
labelWidth : 70,
width : 200,
allowBlank: false,
msgTarget : 'side',
labelAlign:'left'
},
items:[{
xtype:'textfield',
name:'name',
fieldLabel:'name',
value:'USPCAT.COM'
},{
xtype:'hiddenfield',
name:'age',
value:'1'
}],
buttons:[{
text:'提交',
handler:function(){
this.up("form").getForm().submit({//this指當(dāng)前組件(按鈕),up是上一個(gè)組件中找(form)
params:{
info:'age是隱藏字段'
}
});
}
}]
});
})

相關(guān)文章

最新評(píng)論