Thanks for reading. I'm using Ext.Msg to get a string from the user:
Code:
Ext.Msg.show({
title:'Issue Descriptions',
msg: 'Please type in the issue descriptions...',
buttons: Ext.Msg.OKCANCEL,
multiline: 300,
fn: function(btn, text){
if (btn == 'ok') {
sIssueDescriptions = text;
} else {
//user cancelled
}
},
icon: Ext.MessageBox.QUESTION
});
When this is displayed, I want to populate the textarea with the current value of sIssueDescriptions - is there any way I can do this?
Thanks for any tips
Chris