Pman.Dialog.MailTemplateList.bjs
authorEdward <edward@roojs.com>
Wed, 19 Feb 2014 06:18:28 +0000 (14:18 +0800)
committerEdward <edward@roojs.com>
Wed, 19 Feb 2014 06:18:28 +0000 (14:18 +0800)
Pman.Dialog.MailTemplateList.js

Pman.Dialog.MailTemplateList.bjs
Pman.Dialog.MailTemplateList.js

index 85023b8..aba3635 100644 (file)
                         }
                     ]
                 },
-                {
-                    "listeners": {
-                        "|activate": "function() {\n    _this.panel = this;\n    if (_this.grid) {\n        _this.grid.footer.onClick('first');\n    }\n}"
-                    },
-                    "background": true,
-                    "fitContainer": true,
-                    "fitToframe": true,
-                    "region": "center",
-                    "tableName": "clipping_journalist",
-                    "title": "Journalist",
-                    "xtype": "GridPanel",
-                    "|xns": "Roo",
-                    "items": [
-                        {
-                            "listeners": {
-                                "|render": "function() \n{\n    _this.grid = this; \n    if (_this.panel.active) {\n       this.footer.onClick('first');\n    }\n}"
-                            },
-                            "*prop": "grid",
-                            "autoExpandColumn": "name",
-                            "clicksToEdit": 1,
-                            "loadMask": true,
-                            "xtype": "EditorGrid",
-                            "|xns": "Roo.grid",
-                            "items": [
-                                {
-                                    "listeners": {
-                                        "beforeload": "function (_self, o)\n{\n    o.params = o.params || {};\n    if (!_this.data.campaign_id) {\n        Roo.log('Missing campaign id!?');\n        return false;\n    }\n    o.params.campaign_id = _this.data.campaign_id;\n}"
-                                    },
-                                    "*prop": "dataSource",
-                                    "remoteSort": true,
-                                    "xtype": "Store",
-                                    "|sortInfo": "{ field : 'name', direction: 'ASC' }",
-                                    "|xns": "Roo.data",
-                                    "items": [
-                                        {
-                                            "*prop": "proxy",
-                                            "method": "GET",
-                                            "xtype": "HttpProxy",
-                                            "|url": "baseURL + '/Roo/clipping_journalist.php'",
-                                            "|xns": "Roo.data"
-                                        },
-                                        {
-                                            "*prop": "reader",
-                                            "id": "id",
-                                            "root": "data",
-                                            "totalProperty": "total",
-                                            "xtype": "JsonReader",
-                                            "|fields": "[\n    {\n        'name': 'id',\n        'type': 'int'\n    },\n    {\n        'name': 'name',\n        'type': 'string'\n    },\n    {\n        'name': 'publication',\n        'type': 'string'\n    }\n]",
-                                            "|xns": "Roo.data"
-                                        }
-                                    ]
-                                },
-                                {
-                                    "*prop": "footer",
-                                    "displayInfo": true,
-                                    "displayMsg": "Displaying Journalist {0} - {1} of {2}",
-                                    "emptyMsg": "Nothing found",
-                                    "pageSize": 25,
-                                    "xtype": "PagingToolbar",
-                                    "|xns": "Roo"
-                                },
-                                {
-                                    "*prop": "colModel[]",
-                                    "dataIndex": "name",
-                                    "header": "Name",
-                                    "width": 100,
-                                    "xtype": "ColumnModel",
-                                    "|renderer": "function(v,x,r) \n{ \n    return String.format('{0}', v ? v : ''); \n}",
-                                    "|xns": "Roo.grid"
-                                },
-                                {
-                                    "*prop": "colModel[]",
-                                    "dataIndex": "publication",
-                                    "header": "Publication",
-                                    "width": 300,
-                                    "xtype": "ColumnModel",
-                                    "|renderer": "function(v,x,r) \n{ \n    return String.format('{0}', v ? v : ''); \n}",
-                                    "|xns": "Roo.grid",
-                                    "items": [
-                                        {
-                                            "|xns": "Roo.grid",
-                                            "xtype": "GridEditor",
-                                            "*prop": "editor"
-                                        }
-                                    ]
-                                }
-                            ]
-                        }
-                    ]
-                },
                 {
                     "listeners": {
                         "|click": "function() {\n    _this.dialog.hide();\n}"
index dccc647..3a90876 100644 (file)
@@ -250,120 +250,6 @@ Pman.Dialog.MailTemplateList = {
                             }
                         ]
                     }
-                },
-                {
-                    xtype: 'GridPanel',
-                    xns: Roo,
-                    listeners : {
-                        activate : function() {
-                            _this.panel = this;
-                            if (_this.grid) {
-                                _this.grid.footer.onClick('first');
-                            }
-                        }
-                    },
-                    background : true,
-                    fitContainer : true,
-                    fitToframe : true,
-                    region : 'center',
-                    tableName : 'clipping_journalist',
-                    title : "Journalist",
-                    grid : {
-                        xtype: 'EditorGrid',
-                        xns: Roo.grid,
-                        listeners : {
-                            render : function() 
-                            {
-                                _this.grid = this; 
-                                if (_this.panel.active) {
-                                   this.footer.onClick('first');
-                                }
-                            }
-                        },
-                        autoExpandColumn : 'name',
-                        clicksToEdit : 1,
-                        loadMask : true,
-                        dataSource : {
-                            xtype: 'Store',
-                            xns: Roo.data,
-                            listeners : {
-                                beforeload : function (_self, o)
-                                {
-                                    o.params = o.params || {};
-                                    if (!_this.data.campaign_id) {
-                                        Roo.log('Missing campaign id!?');
-                                        return false;
-                                    }
-                                    o.params.campaign_id = _this.data.campaign_id;
-                                }
-                            },
-                            remoteSort : true,
-                            sortInfo : { field : 'name', direction: 'ASC' },
-                            proxy : {
-                                xtype: 'HttpProxy',
-                                xns: Roo.data,
-                                method : 'GET',
-                                url : baseURL + '/Roo/clipping_journalist.php'
-                            },
-                            reader : {
-                                xtype: 'JsonReader',
-                                xns: Roo.data,
-                                id : 'id',
-                                root : 'data',
-                                totalProperty : 'total',
-                                fields : [
-                                    {
-                                        'name': 'id',
-                                        'type': 'int'
-                                    },
-                                    {
-                                        'name': 'name',
-                                        'type': 'string'
-                                    },
-                                    {
-                                        'name': 'publication',
-                                        'type': 'string'
-                                    }
-                                ]
-                            }
-                        },
-                        footer : {
-                            xtype: 'PagingToolbar',
-                            xns: Roo,
-                            displayInfo : true,
-                            displayMsg : "Displaying Journalist {0} - {1} of {2}",
-                            emptyMsg : "Nothing found",
-                            pageSize : 25
-                        },
-                        colModel : [
-                            {
-                                xtype: 'ColumnModel',
-                                xns: Roo.grid,
-                                dataIndex : 'name',
-                                header : 'Name',
-                                width : 100,
-                                renderer : function(v,x,r) 
-                                { 
-                                    return String.format('{0}', v ? v : ''); 
-                                }
-                            },
-                            {
-                                xtype: 'ColumnModel',
-                                xns: Roo.grid,
-                                dataIndex : 'publication',
-                                header : 'Publication',
-                                width : 300,
-                                renderer : function(v,x,r) 
-                                { 
-                                    return String.format('{0}', v ? v : ''); 
-                                },
-                                editor : {
-                                    xtype: 'GridEditor',
-                                    xns: Roo.grid
-                                }
-                            }
-                        ]
-                    }
                 }
             ],
             center : {