Pman.Dialog.CoreImportUrl.bjs
[Pman.Core] / Pman.Dialog.CoreImportUrl.js
index c227083..90efd5d 100644 (file)
@@ -1 +1,128 @@
-0
\ No newline at end of file
+//<script type="text/javascript">
+
+// Auto generated file - created by app.Builder.js- do not edit directly (at present!)
+
+Pman.Dialog.CoreImportUrl = {
+
+    dialog : false,
+    callback:  false,
+
+    show : function(data, cb)
+    {
+        if (!this.dialog) {
+            this.create();
+        }
+
+        this.callback = cb;
+        this.data = data;
+        this.dialog.show(this.data._el);
+        if (this.form) {
+           this.form.reset();
+           this.form.setValues(data);
+           this.form.fireEvent('actioncomplete', this.form,  { type: 'setdata', data: data });
+        }
+
+    },
+
+    create : function()
+    {
+        var _this = this;
+        this.dialog = Roo.factory({
+            xtype: 'LayoutDialog',
+            xns: Roo,
+            closable : false,
+            collapsible : false,
+            draggable : false,
+            height : 140,
+            modal : true,
+            resizable : false,
+            title : "Import URL",
+            width : 500,
+            items : [
+                {
+                    xtype: 'ContentPanel',
+                    xns: Roo,
+                    region : 'center',
+                    items : [
+                        {
+                            xtype: 'Form',
+                            xns: Roo.form,
+                            listeners : {
+                                actioncomplete : function (_self, action)
+                                {
+                                     if (action.type == 'setdata') {\r
+                                       // _this.dialog.el.mask("Loading");\r
+                                       // if(_this.data.id*1 > 0)\r
+                                       //     this.load({ method: 'GET', params: { '_id' : _this.data.id }});\r
+                                       \r
+                                       return;\r
+                                    }\r
+                                    if (action.type == 'load') {\r
+                                 \r
+                                        return;\r
+                                    }\r
+                                    if (action.type =='submit') {\r
+                                    \r
+                                        //action.result.data\r
+                                        _this.dialog.hide();\r
+                                    //    Roo.log(_this.callback);\r
+                                         if (_this.callback) {\r
+                                            _this.callback.call(_this, action.result.data);\r
+                                         }\r
+                                         _this.form.reset();\r
+                                         return;\r
+                                    }
+                                },
+                                rendered : function (form)
+                                {
+                                    _this.form= form;
+                                }
+                            },
+                            method : 'POST',
+                            style : 'margin:10px;',
+                            url : baseURL + '/Crm/ImportHtml.php',
+                            items : [
+                                {
+                                    xtype: 'TextField',
+                                    xns: Roo.form,
+                                    fieldLabel : 'URL',
+                                    name : 'importUrl',
+                                    vtype : 'url',
+                                    width : 250
+                                }
+                            ]
+                        }
+                    ]
+                }
+            ],
+            center : {
+                xtype: 'LayoutRegion',
+                xns: Roo
+            },
+            buttons : [
+                {
+                    xtype: 'Button',
+                    xns: Roo,
+                    listeners : {
+                        click : function (_self, e)
+                        {
+                            _this.dialog.hide();
+                        }
+                    },
+                    text : "Cancel"
+                },
+                {
+                    xtype: 'Button',
+                    xns: Roo,
+                    listeners : {
+                        click : function (_self, e)
+                        {
+                            _this.form.doAction("submit");
+                        }
+                    },
+                    text : "OK"
+                }
+            ]
+        });
+    }
+};