0
我試圖在變量名稱上點擊特定的文本區域後,親愛的。任何幫助如何做到這一點?在文本區域中放置文本字段
clientname = Ext.create('Ext.form.TextField', {
id : 'client_name',
fieldLabel: 'Client Name',
width :'20%'
});
function onButtonClick(){
name=Ext.getCmp('client_name').getValue();
}
result = Ext.create('Ext.form.FormPanel', {
width : 400,
bodyPadding: 0,
id:'outcome',
items: [{
xtype : 'textareafield',
name : 'message',
anchor : '100%',
readOnly : true,
value : 'Dear'
}]
});