Pman.Dialog.Image.js
[Pman.Core] / Pman.Dialog.Image.js
index 89d51e5..06a891c 100644 (file)
@@ -48,10 +48,10 @@ Pman.Dialog.Image = {
             modal : true,
             resizable : false,
             title : "Upload an Image or File",
-            uploadProgressRunning : false,
+            uploadComplete : false,
             width : 500,
             shadow : true,
-            uploadProgres : function()
+            uploadProgress : function()
             {
                 var dlg = this;
                if (!dlg.haveProgress) {
@@ -108,7 +108,8 @@ Pman.Dialog.Image = {
                                     _this.dialog.el.unmask();
                                      
                                     if (act.type == 'setdata') { 
-                                        this.url = _this.data._url ? _this.data._url : baseURL + '/Roo/Images.php'
+                                        this.url = _this.data._url ? _this.data._url : baseURL + '/Roo/Images.php';
+                                        this.el.dom.action = this.url;
                                         this.findField('UPLOAD_IDENTIFIER').setValue(
                                             (new Date() * 1) + '' + Math.random());
                                             
@@ -126,6 +127,7 @@ Pman.Dialog.Image = {
                                     
                                     if (act.type == 'submit') { // only submitted here if we are 
                                         _this.dialog.hide();
+                                        
                                         //console.log(act);
                                         if (_this.callback) {
                                             _this.callback.call(this, act.result.data);
@@ -230,10 +232,7 @@ Pman.Dialog.Image = {
                             _this.dialog.el.mask("Sending");
                             _this.dialog.uploadComplete = false;
                             _this.form.doAction('submit', {
-                                url: baseURL + '/Roo/Images.html',
-                                method: 'POST',
                                 params: {
-                                 //   _id: 0 ,
                                     ts : Math.random()
                                 } 
                             });