DataObjects/Core_domain.php
[Pman.Core] / Pman.Dialog.PersonEditor.js
index 7f98020..dc2bb32 100644 (file)
@@ -518,13 +518,23 @@ Pman.Dialog.PersonEditor.prototype = {
                 width : 220
             },
             secure_passowrd : {
-                name : 'passwd2',
-                fieldLabel : "Password (type again to confirm)",
-                value : '',
-                allowBlank : true, // must be filled in as we rely on it for login details..
-                inputType: 'password', // << if comment out this input type, it should be ok
-                xtype : 'TextField',
-                width : 220
+                name : 'secure_passowrd',
+                fieldLabel : "Secure passwords",
+                inputValue : 1,
+                valueOff : 0,
+                checked : true,
+                xtype : 'Checkbox',
+                xns : Roo.form,
+                width : 220,
+                listeners : {
+                    check : function (_self, checked) {
+                        this.form.findField('passwd1').insecure = false;
+                        
+                        if(!checked){
+                            this.form.findField('passwd1').insecure = true;
+                        }
+                    }
+                }
             },
             project_id_fs : {
                 xtype : 'FieldSetEx',