Pman.Tab.CmsBlog.bjs
authorAlan Knowles <alan@roojs.com>
Wed, 12 Jul 2017 01:32:50 +0000 (09:32 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 12 Jul 2017 01:32:50 +0000 (09:32 +0800)
Pman.Tab.CmsBlog.js

Pman.Tab.CmsBlog.bjs
Pman.Tab.CmsBlog.js

index 85ec44f..55c00cb 100644 (file)
             },
             {
              "listeners" : {
-              "|click" : "function()\n{\n    var ds = false;\n    if(_this.grid.selModel.getSelections().length != 1){\n        Roo.MessageBox.alert(\"Error\", \"Select page to delete\");\n        return;\n    }\n    var  sel = _this.grid.selModel.getSelected();\n    if(sel.data.is_system_page){\n        Roo.MessageBox.alert(\"Error\", \"System pages can not be deleted.\");\n        return;\n    }\n    \n    if (!sel.data.is_deleted) {\n        Roo.MessageBox.confirm(\"Confirm\", \n            \"Are you sure you want to delete this, - to un-delete, select 'Show Deleted' at bottom, select this item and press this button again\", \n            function(res) {\n                if (res != 'yes') {\n                    return;\n                }\n                new Pman.Request({\n                    method : 'POST',\n                    mask : \"Deleting\"\n                    url : baseURL + '/Roo/cms_page',\n                    params : {\n                        id : sel.data.id,\n                        is_deleted : 1 * (!sel.data.is_deleted)\n                    },\n                    success : function() { \n                        _this.grid.footer.onClick('refresh');\n                    }\n                });\n                \n                    \n            }\n        );\n        return;\n    }\n  \n    \n    new Pman.Request({\n        method : 'POST',\n        url : baseURL + '/Roo/cms_page',\n        mask: 'Un-deleting',\n        params : {\n            id : sel.data.id,\n            is_deleted : 0\n        },\n        success : function() { \n            _this.grid.footer.onClick('refresh');\n        }\n    });\n    \n}\n",
+              "|click" : "function()\n{\n    var ds = false;\n    if(_this.grid.selModel.getSelections().length != 1){\n        Roo.MessageBox.alert(\"Error\", \"Select page to delete\");\n        return;\n    }\n    var  sel = _this.grid.selModel.getSelected();\n    if(sel.data.is_system_page){\n        Roo.MessageBox.alert(\"Error\", \"System pages can not be deleted.\");\n        return;\n    }\n    \n    if (!sel.data.is_deleted) {\n        Roo.MessageBox.confirm(\"Confirm\", \n            \"Are you sure you want to delete this, - to un-delete, select 'Show Deleted' at bottom, select this item and press this button again\", \n            function(res) {\n                if (res != 'yes') {\n                    return;\n                }\n                new Pman.Request({\n                    method : 'POST',\n                    mask : \"Deleting\"\n                    url : baseURL + '/Roo/cms_page',\n                    params : {\n                        id : sel.data.id,\n                        is_deleted : 1  \n                    },\n                    success : function() { \n                        _this.grid.footer.onClick('refresh');\n                    }\n                });\n                \n                    \n            }\n        );\n        return;\n    }\n  \n    \n    new Pman.Request({\n        method : 'POST',\n        url : baseURL + '/Roo/cms_page',\n        mask: 'Un-deleting',\n        params : {\n            id : sel.data.id,\n            is_deleted : 0\n        },\n        success : function() { \n            _this.grid.footer.onClick('refresh');\n        }\n    });\n    \n}\n",
               "render" : "function (_self)\n{\n    _this.deleteBtn = this;\n}"
              },
              "text" : "Delete",
index e1e6f4e..c5603c9 100644 (file)
@@ -526,7 +526,7 @@ Pman.Tab.CmsBlog = new Roo.XComponent({
                                 url : baseURL + '/Roo/cms_page',
                                 params : {
                                     id : sel.data.id,
-                                    is_deleted : 1 * (!sel.data.is_deleted)
+                                    is_deleted : 1  
                                 },
                                 success : function() { 
                                     _this.grid.footer.onClick('refresh');