r_honey
15 Nov 2011, 12:13 AM
In the following code:
Ext.Msg.prompt('Title', 'Message', function(btn, value) {
alert(value);
});
"value" is always undefined in the callback no matter what you enter in the UI.
Ext.Msg.prompt('Title', 'Message', function(btn, value) {
alert(value);
});
"value" is always undefined in the callback no matter what you enter in the UI.