BUG 10646 Al despausar un caso aparece una ventana sin titulo SOLVED

- Wrong parameter name for message text
- Fix parameter name
This commit is contained in:
Julio Cesar Laura
2013-02-05 14:24:32 -04:00
parent 8d55c9723d
commit ef4213f183

View File

@@ -335,7 +335,7 @@ function cancelCase(){
function callbackUnpauseCase (btn, text) {
if ( btn == 'yes' ) {
Ext.MessageBox.show({ progressText: _('ID_PROCESSING'), wait:true,waitConfig: {interval:200} });
Ext.MessageBox.show({ msg: _('ID_PROCESSING'), wait:true,waitConfig: {interval:200} });
Ext.Ajax.request({
url: 'cases_Ajax',
success: function(response) {
@@ -365,7 +365,7 @@ function unpauseCase() {
Ext.Msg.confirm( _('ID_CONFIRM'), _('ID_CONFIRM_UNPAUSE_CASE') , function (btn, text) {
if ( btn == 'yes' ) {
Ext.MessageBox.show({ progressText: _('ID_PROCESSING'), wait:true,waitConfig: {interval:200} });
Ext.MessageBox.show({ msg: _('ID_PROCESSING'), wait:true,waitConfig: {interval:200} });
Ext.Ajax.request({
url: 'cases_Ajax',
success: function(response) {