标签:style blog http io width 2014 for re
Ext.onReady(function(){
Ext.QuickTips.init();
var testForm = new Ext.form.Panel({
title:‘Ext.form.field.TextArea示例‘,
bodyStyle:‘padding:5 5 5 5‘,
frame:true,
height:150,
width:250,
renderTo:‘form‘,
items:[{
xtype:‘textarea‘,
fieldLabel:‘提示‘,
id:‘memo‘,
labelSeparator:‘:‘,
labelWidth:60,
width:200
}],
buttons:[{
text:‘确定‘,
handler:showValue
}]
});
//获得form组件中的内容
function showValue(){
var meo = testForm.getForm().findField("memo");
alert(meo.getValue());
}
});
Extjs textarea内容,布布扣,bubuko.com
标签:style blog http io width 2014 for re
原文地址:http://www.cnblogs.com/babyhhcsy/p/3866623.html