我有以下代码:
{
fieldLabel : Label,
name : 'question[text]',
xtype : 'textarea',
allowBlank : false,
blankText : "Enter at least something",
height : 160
},
{ xtype: 'button',
text: 'Change Text',
handler: function(){
Ext.Msg.prompt('Enter Text', 'Enter new text for Action 1:', function(btn, text){
if (btn == 'ok' && text) {
var textz = 'Hi, ' + text;
action.setText(textz);
}
});
}
},
工作正常,当我点击按钮时出现MessageBox我可以输入的东西。该怎么做,如果我输入了一些内容,然后单击“确定”,我输入的文本将出现在我的文本区域中?
谢谢你的帮助!
答案 0 :(得分:0)
试试这个:
{
fieldLabel : Label,
name : 'question[text]',
id : 'txtareafield',
xtype : 'textarea',
allowBlank : false,
blankText : "Enter at least something",
height : 160
},
{ xtype: 'button',
text: 'Change Text',
handler: function(){
Ext.Msg.prompt('Enter Text', 'Enter new text for Action 1:', function(btn, text){
if (btn == 'ok' && text) {
var textz = 'Hi, ' + text;
action.setText(textz);
Ext.getCmp('txtareafield').setValue(textz):
}
});
}
},