Pman.Dialog.AdminCoreEnum.bjs
[Pman.Admin] / Pman.Dialog.AdminCoreEnum.js
index 08292b9..3bbabbe 100644 (file)
@@ -184,70 +184,6 @@ Pman.Dialog.AdminCoreEnum = {
                             xtype: 'Toolbar',
                             xns: Roo,
                             items : [
-                                {
-                                    xtype: 'TextItem',
-                                    xns: Roo.Toolbar,
-                                    text : "Pulldown Name:"
-                                },
-                                {
-                                    xtype: 'ComboBox',
-                                    xns: Roo.form,
-                                    listeners : {
-                                        render : function (_self)
-                                        {
-                                            _this.etypeCombo = _self;
-                                        },
-                                        select : function (combo, record, index)
-                                        {
-                                            _this.grid.footer.onClick('first');
-                                        }
-                                    },
-                                    alwaysQuery : true,
-                                    displayField : 'name',
-                                    editable : 'false',
-                                    emptyText : "Select pulldown",
-                                    fieldLabel : 'core_enum',
-                                    forceSelection : true,
-                                    listWidth : 400,
-                                    loadingText : "Searching...",
-                                    minChars : 2,
-                                    pageSize : 50,
-                                    qtip : "Select type",
-                                    queryParam : 'query[name]',
-                                    selectOnFocus : true,
-                                    tpl : '<div class="x-grid-cell-text x-btn button"><b>{display_name}</b> - {name} </div>',
-                                    triggerAction : 'all',
-                                    typeAhead : false,
-                                    valueField : 'name',
-                                    width : 300,
-                                    store : {
-                                        xtype: 'Store',
-                                        xns: Roo.data,
-                                        listeners : {
-                                            beforeload : function (_self, o){
-                                                o.params = o.params || {};
-                                                // set more here
-                                                o.params['query[empty_etype]'] = 1; 
-                                            }
-                                        },
-                                        remoteSort : true,
-                                        sortInfo : { direction : 'ASC', field: 'display_name' },
-                                        proxy : {
-                                            xtype: 'HttpProxy',
-                                            xns: Roo.data,
-                                            method : 'GET',
-                                            url : baseURL + '/Roo/core_enum.php'
-                                        },
-                                        reader : {
-                                            xtype: 'JsonReader',
-                                            xns: Roo.data,
-                                            id : 'id',
-                                            root : 'data',
-                                            totalProperty : 'total',
-                                            fields : [{"name":"id","type":"int"},{"name":"etype","type":"string"}]
-                                        }
-                                    }
-                                },
                                 {
                                     xtype: 'Button',
                                     xns: Roo.Toolbar,
@@ -280,83 +216,9 @@ Pman.Dialog.AdminCoreEnum = {
                                     text : "Add Value",
                                     icon : Roo.rootURL + 'images/default/dd/drop-add.gif'
                                 },
-                                {
-                                    xtype: 'Button',
-                                    xns: Roo.Toolbar,
-                                    listeners : {
-                                        click : function()
-                                        {
-                                            
-                                            // if we do not have a selected type... - what should we show..?
-                                            var et = _this.etypeCombo.getValue();
-                                            
-                                            if (!et) {
-                                                Roo.MessageBox.alert("Error", "Select a pulldown");
-                                                return;
-                                            }
-                                            var sc = _this.grid.getSelectionModel().getSelectedCell();
-                                            Roo.log(sc);
-                                            var ds = _this.grid.ds.getAt(sc[0]);
-                                            if (!ds) {
-                                                Roo.MessageBox.alert("Error", "Select enum");
-                                                return;
-                                            }
-                                            
-                                            Roo.log(ds);
-                                            Pman.Dialog.AdminEnumImages.show({onid:ds.data.id}, function(){
-                                                _this.grid.footer.onClick('first');
-                                            });
-                                            
-                                        }
-                                    },
-                                    cls : 'x-btn-text-icon',
-                                    text : "Add Images",
-                                    icon : Roo.rootURL + 'images/default/dd/drop-add.gif'
-                                },
                                 {
                                     xtype: 'Fill',
                                     xns: Roo.Toolbar
-                                },
-                                {
-                                    xtype: 'Button',
-                                    xns: Roo.Toolbar,
-                                    listeners : {
-                                        click : function()
-                                        {
-                                            
-                                            Roo.MessageBox.prompt ("Create a new Enum type",
-                                                "Enter the name for a new enum type, " + 
-                                                "this is only relivant if you  know how it is going to be used",
-                                                function(btn,txt) {
-                                                    if (btn != 'ok') {
-                                                        return; 
-                                                    }
-                                                    new Pman.Request({
-                                                        url : baseURL + '/Roo/Core_enum.php',
-                                                        method : 'POST',
-                                                        params : {
-                                                            etype : '',
-                                                            name : txt,
-                                                            active : 1
-                                                        }, 
-                                                        success : function() {
-                                                            Roo.MessageBox.alert("Created", "You can now select it from the type list on the left");
-                                                        }
-                                                    });
-                                                            
-                                                    
-                                                     
-                                                     
-                                                }
-                                            ); 
-                                                 
-                                                 
-                                        
-                                        }
-                                    },
-                                    cls : 'x-btn-text-icon',
-                                    text : "Add new pulldown list",
-                                    icon : Roo.rootURL + 'images/default/dd/drop-add.gif'
                                 }
                             ]
                         },