Pman.Dialog.ImageUpload.bjs
authorAlan Knowles <alan@akbkhome.com>
Thu, 4 Nov 2010 03:32:44 +0000 (11:32 +0800)
committerAlan Knowles <alan@akbkhome.com>
Thu, 4 Nov 2010 03:32:44 +0000 (11:32 +0800)
Pman.Dialog.ImageUpload.bjs

index 0d5a54a..a9756f7 100644 (file)
@@ -29,7 +29,7 @@
                     "items": [
                         {
                             "listeners": {
-                                "|actioncomplete": "function(_self,action)\n{\n    if (action.type == 'setdata') {\n       //_this.dialog.el.mask(\"Loading\");\n       //this.load({ method: 'GET', params: { '_id' : _this.data.id }});\n       return;\n    }\n    if (action.type == 'load') {\n        _this.dialog.el.unmask();\n        return;\n    }\n    if (action.type =='submit') {\n    \n        _this.dialog.el.unmask();\n        _this.dialog.hide();\n    \n         if (_this.callback) {\n            _this.callback.call(_this, _this.form.getValues());\n         }\n         _this.form.reset();\n         return;\n    }\n}\n",
+                                "|actioncomplete": "function(_self,act)\n{\n       _this.uploadComplete = true;\n        _this.dialog.el.unmask();\n         \n       \n        if (act.type == 'load') {\n            \n            _this.data = act.result.data;\n           // _this.loaded();\n            return;\n        }\n        \n        \n        if (act.type == 'submit') { // only submitted here if we are \n            _this.dialog.hide();\n            //console.log(act);\n            if (_this.callback) {\n                _this.callback.call(this, act.result.data);\n            }\n            return; \n        }\n}\n",
                                 "|rendered": "function (form)\n{\n    _this.form= form;\n}\n",
                                 "actionfailed": "function (_self, act)\n{\n    _this.uploadComplete = true;\n    _this.dialog.el.unmask();\n    // error msg???\n    \n    if (act.type == 'submit') {\n        Ext.MessageBox.alert(\"Error\", \"Saving failed = fix errors and try again\");\n        return;\n    }\n    \n    // what about load failing..\n    Ext.MessageBox.alert(\"Error\", \"Error loading details\"); \n}"
                             },