Pman.Dialog.CoreCompanies.bjs
[Pman.Core] / Pman.Dialog.CoreCompanies.js
index 90c7538..dbe638c 100644 (file)
@@ -97,7 +97,7 @@ Pman.Dialog.CoreCompanies = {
                             },
                             fileUpload : true,
                             labelWidth : 160,
-                            url : baseURL + '/Roo/Person.php',
+                            url : baseURL + '/Roo/Companies.php',
                             items : [
                                 {
                                     xtype: 'Column',
@@ -116,25 +116,62 @@ Pman.Dialog.CoreCompanies = {
                                         {
                                             xtype: 'ComboBox',
                                             xns: Roo.form,
-                                            allowBlank : false,
-                                            displayField : 'desc',
-                                            editable : false,
+                                            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 Type",
                                             fieldLabel : 'Type',
+                                            forceSelection : true,
                                             hiddenName : 'comptype',
                                             listWidth : 250,
+                                            loadingText : "Searching...",
+                                            minChars : 2,
                                             name : 'comptype_name',
-                                            qtip : "Select Company type",
+                                            pageSize : 20,
+                                            qtip : "Select type",
+                                            queryParam : 'query[name]',
                                             selectOnFocus : true,
+                                            tpl : '<div class="x-grid-cell-text x-btn button"><b>{name}</b> </div>',
                                             triggerAction : 'all',
                                             typeAhead : false,
                                             valueField : 'val',
                                             width : 200,
                                             store : {
-                                                xtype: 'SimpleStore',
+                                                xtype: 'Store',
                                                 xns: Roo.data,
-                                                data : '[ \'CONSULTANT\', "Consultant" ],[ \'CLIENT\'    ,  "Client" ],[ \'CONTRACTOR\' , "Contractor" ]',
-                                                fields : '[\'val\', \'desc\']'
+                                                listeners : {
+                                                    beforeload : function (_self, o){
+                                                        o.params = o.params || {};
+                                                        // set more here
+                                                        o.params['query[empty_etype]'] = 1;
+                                                    }
+                                                },
+                                                remoteSort : true,
+                                                sortInfo : { direction : 'ASC', field: 'id' },
+                                                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"}]
+                                                }
                                             }
                                         },
                                         {
@@ -288,6 +325,17 @@ Pman.Dialog.CoreCompanies = {
                 {
                     xtype: 'Button',
                     xns: Roo,
+                    listeners : {
+                        click : function (_self, e)
+                        {
+                            // do some checks?
+                             
+                            
+                            _this.dialog.el.mask("Saving");
+                            _this.form.doAction("submit");
+                        
+                        }
+                    },
                     text : "Save"
                 }
             ]