diff --git a/gulliver/js/ext/pmos-common.js b/gulliver/js/ext/pmos-common.js index 288569aa5..e6978ca33 100755 --- a/gulliver/js/ext/pmos-common.js +++ b/gulliver/js/ext/pmos-common.js @@ -15,6 +15,7 @@ PMExtJSCommon = function() { this.info = function(title, msg, fn) { Ext.MessageBox.show({ + id: 'infoMessageBox', title: title, msg: msg, buttons: Ext.MessageBox.OK, @@ -26,6 +27,7 @@ PMExtJSCommon = function() { this.question = function(title, msg, fn) { Ext.MessageBox.show({ + id: 'questionMessageBox', title: title, msg: msg, buttons: Ext.MessageBox.YESNO, @@ -40,6 +42,7 @@ PMExtJSCommon = function() { this.warning = function(title, msg, fn) { Ext.MessageBox.show({ + id: 'warningMessageBox', title: title, msg: msg, buttons: Ext.MessageBox.OK, @@ -51,6 +54,7 @@ PMExtJSCommon = function() { this.error = function(title, msg, fn) { Ext.MessageBox.show({ + id: 'errorMessageBox', title: title, msg: msg, buttons: Ext.MessageBox.OK, diff --git a/workflow/engine/templates/pmTables/data.js b/workflow/engine/templates/pmTables/data.js index fa5ec31d3..e50711417 100755 --- a/workflow/engine/templates/pmTables/data.js +++ b/workflow/engine/templates/pmTables/data.js @@ -559,6 +559,7 @@ ImportPMTableCSV = function(){ [',', 'Comma (,)']] }); var w = new Ext.Window({ + id: 'windowImportUploader', title : '', width : 440, height : 180, @@ -672,6 +673,7 @@ ExportPMTableCSV = function(){ [',', 'Comma (,)']] }); var w = new Ext.Window({ + id: 'windowExportUploader', title : '', width : 320, height : 140, diff --git a/workflow/engine/templates/pmTables/list.js b/workflow/engine/templates/pmTables/list.js index 384ac39eb..9a46f9329 100755 --- a/workflow/engine/templates/pmTables/list.js +++ b/workflow/engine/templates/pmTables/list.js @@ -511,6 +511,7 @@ DeletePMTable = function() { ImportPMTable = function(){ var w = new Ext.Window({ + id: 'windowPmTableUploaderImport', title: '', width: 420, height: 160, @@ -570,6 +571,7 @@ ImportPMTable = function(){ } else { win = new Ext.Window({ + id: 'windowImportingError', applyTo:'hello-win', layout:'fit', width:500, @@ -659,6 +661,7 @@ PMTableData = function() } win = new Ext.Window({ + id: 'windowPmtablesReportTable', layout: 'fit', width: 700, height: 400,