DataObjects/pman.links.ini
[Pman.Core] / Pman.Dialog.CoreEnum.js
index 87155e2..9897e40 100644 (file)
@@ -102,13 +102,20 @@ Pman.Dialog.CoreEnum = {
                                     actionMode : 'fieldEl',
                                     allowBlank : false,
                                     fieldLabel : 'Name',
-                                    hidden : false,
+                                    hidden : true,
                                     name : 'name',
                                     width : 200
                                 },
                                 {
                                     xtype: 'TextField',
                                     xns: Roo.form,
+                                    listeners : {
+                                        keyup : function (_self, e)
+                                        {
+                                            _this.form.findField('name').setValue(this.getValue().replace(/[^a-z0-9]/ig, '').toUpperCase());
+                                            
+                                        }
+                                    },
                                     allowBlank : false,
                                     fieldLabel : 'Display Name',
                                     name : 'display_name',