Pman.Tab.AdminNotify.bjs
authorAlan Knowles <alan@roojs.com>
Wed, 5 Dec 2012 06:10:04 +0000 (14:10 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 5 Dec 2012 06:10:04 +0000 (14:10 +0800)
Pman.Tab.AdminNotify.js

Pman.Tab.AdminNotify.bjs
Pman.Tab.AdminNotify.js

index 59fce5d..fc3202a 100644 (file)
                             "xtype": "Toolbar",
                             "|xns": "Roo",
                             "items": [
+                                {
+                                    "|xns": "Roo.form",
+                                    "xtype": "ComboBox",
+                                    "allowBlank": false,
+                                    "editable": false,
+                                    "emptyText": "Select core_notify",
+                                    "forceSelection": true,
+                                    "listWidth": 400,
+                                    "loadingText": "Searching...",
+                                    "minChars": 2,
+                                    "pageSize": 20,
+                                    "qtip": "Select core_notify",
+                                    "selectOnFocus": true,
+                                    "triggerAction": "all",
+                                    "typeAhead": true,
+                                    "width": 300,
+                                    "tpl": "<div class=\"x-grid-cell-text x-btn button\"><b>{name}</b> </div>",
+                                    "queryParam": "",
+                                    "fieldLabel": "core_notify",
+                                    "valueField": "id",
+                                    "displayField": "",
+                                    "hiddenName": "",
+                                    "name": "",
+                                    "items": [
+                                        {
+                                            "*prop": "store",
+                                            "xtype": "Store",
+                                            "|xns": "Roo.data",
+                                            "remoteSort": true,
+                                            "|sortInfo": "{ direction : 'ASC', field: 'id' }",
+                                            "listeners": {
+                                                "|beforeload": "function (_self, o){\n    o.params = o.params || {};\n    // set more here\n}\n"
+                                            },
+                                            "items": [
+                                                {
+                                                    "*prop": "proxy",
+                                                    "xtype": "HttpProxy",
+                                                    "method": "GET",
+                                                    "|xns": "Roo.data",
+                                                    "|url": "baseURL + '/Roo/core_notify.php'"
+                                                },
+                                                {
+                                                    "*prop": "reader",
+                                                    "xtype": "JsonReader",
+                                                    "|xns": "Roo.data",
+                                                    "id": "id",
+                                                    "root": "data",
+                                                    "totalProperty": "total",
+                                                    "|fields": "[{\"name\":\"id\",\"type\":\"int\"},{\"name\":\"ontable\",\"type\":\"string\"}]"
+                                                }
+                                            ]
+                                        }
+                                    ]
+                                },
                                 {
                                     "|xns": "Roo.Toolbar",
                                     "xtype": "Fill"
index 37bdc2a..b315bbb 100644 (file)
@@ -237,6 +237,56 @@ Pman.Tab.AdminNotify = new Roo.XComponent({
                     xtype: 'Toolbar',
                     xns: Roo,
                     items : [
+                        {
+                            xtype: 'ComboBox',
+                            xns: Roo.form,
+                            allowBlank : false,
+                            editable : false,
+                            emptyText : "Select core_notify",
+                            forceSelection : true,
+                            listWidth : 400,
+                            loadingText : "Searching...",
+                            minChars : 2,
+                            pageSize : 20,
+                            qtip : "Select core_notify",
+                            selectOnFocus : true,
+                            triggerAction : 'all',
+                            typeAhead : true,
+                            width : 300,
+                            tpl : '<div class="x-grid-cell-text x-btn button"><b>{name}</b> </div>',
+                            queryParam : '',
+                            fieldLabel : 'core_notify',
+                            valueField : 'id',
+                            displayField : '',
+                            hiddenName : '',
+                            name : '',
+                            store : {
+                                xtype: 'Store',
+                                xns: Roo.data,
+                                remoteSort : true,
+                                sortInfo : { direction : 'ASC', field: 'id' },
+                                listeners : {
+                                    beforeload : function (_self, o){
+                                        o.params = o.params || {};
+                                        // set more here
+                                    }
+                                },
+                                proxy : {
+                                    xtype: 'HttpProxy',
+                                    xns: Roo.data,
+                                    method : 'GET',
+                                    url : baseURL + '/Roo/core_notify.php'
+                                },
+                                reader : {
+                                    xtype: 'JsonReader',
+                                    xns: Roo.data,
+                                    id : 'id',
+                                    root : 'data',
+                                    totalProperty : 'total',
+                                    fields : [{"name":"id","type":"int"},{"name":"ontable","type":"string"}]
+                                }
+                            }
+                        },
                         {
                             xtype: 'Fill',
                             xns: Roo.Toolbar