DataObjects/Core_notify.php
[Pman.Core] / Pman.Dialog.Image.js
index 4248952..e7065da 100644 (file)
@@ -46,12 +46,12 @@ Pman.Dialog.Image = {
             haveProgress : false,
             height : 140,
             modal : true,
-            resizable : true,
+            resizable : false,
             title : "Upload an Image or File",
-            uploadProgress : false,
+            uploadComplete : false,
             width : 500,
             shadow : true,
-            uploadProgres : function()
+            uploadProgress : function()
             {
                 var dlg = this;
                if (!dlg.haveProgress) {
@@ -104,33 +104,36 @@ Pman.Dialog.Image = {
                             listeners : {
                                 actioncomplete : function(_self,act)
                                 {
-                                       _this.dialog.uploadComplete = true;
-                                        _this.dialog.el.unmask();
-                                         
-                                          if (act.type == 'setdata') { 
-                                         
-                                              this.findField('UPLOAD_IDENTIFIER').setValue(
-                                                (new Date() * 1) + '' + Math.random());
-                                            return;
-                                         }
-                                         
-                                       
-                                        if (act.type == 'load') {
-                                          // should this happen?  
-                                            _this.data = act.result.data;
-                                           // _this.loaded();
-                                            return;
-                                        }
-                                        
+                                    _this.dialog.uploadComplete = true;
+                                    _this.dialog.el.unmask();
+                                     
+                                    if (act.type == 'setdata') { 
+                                        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());
+                                            
+                                        return;
+                                    }
+                                     
+                                   
+                                    if (act.type == 'load') {
+                                      // should this happen?  
+                                        _this.data = act.result.data;
+                                       // _this.loaded();
+                                        return;
+                                    }
+                                    
+                                    
+                                    if (act.type == 'submit') { // only submitted here if we are 
+                                        _this.dialog.hide();
                                         
-                                        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);
-                                            }
-                                            return; 
+                                        //console.log(act);
+                                        if (_this.callback) {
+                                            _this.callback.call(this, act.result.data);
                                         }
+                                        return; 
+                                    }
                                 },
                                 rendered : function (form)
                                 {
@@ -143,14 +146,21 @@ Pman.Dialog.Image = {
                                     // error msg???
                                     
                                     if (act.type == 'submit') {
-                                        Ext.MessageBox.alert("Error", "Saving failed = fix errors and try again");
+                                        //Roo.log(act);
+                                        try {
+                                            Roo.MessageBox.alert("Error", act.result.errorMsg);
+                                        } catch(e) {
+                                          //  Roo.log(e);
+                                            Roo.MessageBox.alert("Error", "Saving failed = fix errors and try again");        
+                                        }
                                         return;
                                     }
                                     
                                     // what about load failing..
-                                    Ext.MessageBox.alert("Error", "Error loading details"); 
+                                    Roo.MessageBox.alert("Error", "Error loading details"); 
                                 }
                             },
+                            fileUpload : true,
                             labelWidth : 140,
                             method : 'POST',
                             style : 'margin:10px;',
@@ -161,6 +171,18 @@ Pman.Dialog.Image = {
                                     xns: Roo.form,
                                     name : 'UPLOAD_IDENTIFIER'
                                 },
+                                {
+                                    xtype: 'Hidden',
+                                    xns: Roo.form,
+                                    name : 'post_max_size',
+                                    value : "32M"
+                                },
+                                {
+                                    xtype: 'Hidden',
+                                    xns: Roo.form,
+                                    name : 'upload_max_filesize',
+                                    value : "32M"
+                                },
                                 {
                                     xtype: 'TextField',
                                     xns: Roo.form,
@@ -183,18 +205,6 @@ Pman.Dialog.Image = {
                                     xtype: 'Hidden',
                                     xns: Roo.form,
                                     name : 'imgtype'
-                                },
-                                {
-                                    xtype: 'Hidden',
-                                    xns: Roo.form,
-                                    name : 'post_max_size',
-                                    value : "32M"
-                                },
-                                {
-                                    xtype: 'Hidden',
-                                    xns: Roo.form,
-                                    name : 'upload_max_filesize',
-                                    value : "32M"
                                 }
                             ]
                         }
@@ -228,10 +238,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()
                                 } 
                             });