Pman.Dialog.PersonEditor.js
[Pman.Core] / Pman.Dialog.PersonEditor.js
index 0170c9c..b205a2f 100644 (file)
@@ -37,7 +37,7 @@ Pman.Dialog.PersonEditor.prototype = {
                 title: 'Edit Contact Details',
                 modal: true,
                 width:  530,
-                height: 300,
+                height: 400,
                 shadow:true,
                 minWidth:200,
                 minHeight:180,
@@ -454,13 +454,77 @@ Pman.Dialog.PersonEditor.prototype = {
                 qtip : "Enter email",
                 xtype : 'TextField',
                 width : 300
+            },
+            country : {
+                
+                xtype: 'ComboBoxAdder',
+                fieldLabel: "Company",
+                name : 'country',
+                selectOnFocus:true,
+                qtip : "Select Company",
+                allowBlank : false,
+                width: 300,
+                
+                store: {
+                    xtype : 'Store',
+                      // load using HTTP
+                    proxy:{
+                        xtype:  'HttpProxy',
+                        url: baseURL + '/Roo/Companies.html',
+                        method: 'GET'
+                    },
+                    reader: Pman.Readers.Companies,
+                    listeners : {
+                        beforeload : function(st,o)
+                        {
+                        
+                            o.params['!comptype'] = 'OWNER';
+                        },
+                        loadexception : Pman.loadException
+                    
+                    },
+                    sortInfo: {
+                        field: 'name', direction: 'ASC'
+                    }
+                },
+                displayField:'name',
+                valueField : 'id',
+                hiddenName:  'company_id',
+                typeAhead: true,
+                forceSelection: true,
+                //mode: 'local',
+                triggerAction: 'all',
+                tpl: new Ext.Template(
+                    '<div class="x-grid-cell-text x-btn button">',
+                        '<b>{name}</b> {address}',
+                    '</div>'
+                ),
+                queryParam: 'query[name]',
+                loadingText: "Searching...",
+                listWidth: 400,
+               
+                minChars: 2,
+                pageSize:20,
+                listeners : {
+                    adderclick : function()
+                    {
+                        var cb = this;
+                        Pman.Dialog.CoreCompanies.show( {  id: 0 },  function(data) {
+                            cb.setFromData(data);
+                        }); 
+                    }
+                }
+               
+                 
+                 
+                 
             },
             passwd1 : {
                 name : 'passwd1',
                 fieldLabel : "New Password ",
                 value : '',
                 allowBlank : true, // must be filled in as we rely on it for login details..
-                inputType: 'password',
+                inputType: 'password', // << if comment out this input type, it should be ok
                 xtype : 'SecurePass',
                 width : 220,
                 imageRoot : rootURL + '/Pman/templates/images'
@@ -471,10 +535,57 @@ Pman.Dialog.PersonEditor.prototype = {
                 fieldLabel : "Password (type again to confirm)",
                 value : '',
                 allowBlank : true, // must be filled in as we rely on it for login details..
-                inputType: 'password',
+                inputType: 'password', // << if comment out this input type, it should be ok
                 xtype : 'TextField',
                 width : 220
             },
+            project_id_fs : {
+                xtype : 'FieldSetEx',
+                name: 'project_id_fs',
+                value: 0,
+                labelWidth: 100,
+                expanded: false,
+                style: 'width:420px;',
+                legend : "Always File Messages from this Person in Project",
+                items : [
+                    Pman.Std.project_id({
+                        width: 300,
+                        fieldLabel : "Project",
+                        allowBlank : true
+                    }),
+                    {
+                      xtype: 'ComboBox',
+                        name : 'action_type_str',
+                        selectOnFocus:true,
+                        qtip : "Action Type",
+                        fieldLabel : "Action Required",
+
+                        allowBlank : true,
+                        width: 50,
+                        
+                        
+                        store: new Ext.data.SimpleStore({
+                              // load using HTTP
+                            fields: [ 'code', 'desc' ],
+                            data:  [[ 'ACTION_REQUIRED', "Yes"] , [ 'NOTIFY', "No"] ]
+                        }),
+                        displayField:'desc',
+                        editable : false,
+                        valueField : 'code',
+                        hiddenName:  'action_type',
+                        value : 'ACTION_REQUIRED',
+                        forceSelection: true,
+                        mode: 'local',
+                        triggerAction: 'all' 
+                       // queryParam: 'query[project]',
+                       // loadingText: "Searching...",
+                        //listWidth: 400
+                       
+                         
+                       
+                    }
+                ]
+            },
             
             id : { name : 'id', value : '', xtype : 'Hidden' },
             save_send : { name : '_save_send', value : 0, xtype : 'Hidden' },