Merged in mcuiza/processmaker/PM-138 (pull request #1417)

PM-138 (15717: Add user First Name, Email, Username as required fields in user form.)
This commit is contained in:
Julio Cesar Laura Avendaño
2015-02-10 13:36:48 -04:00

View File

@@ -406,7 +406,7 @@ Ext.onReady(function () {
items : [ items : [
{ {
id : 'USR_FIRSTNAME', id : 'USR_FIRSTNAME',
fieldLabel : _('ID_FIRSTNAME'), fieldLabel : '<span style=\"color:red;\" ext:qtip="'+ _('ID_FIELD_REQUIRED', _('ID_FIRSTNAME')) +'"> * </span>' + _('ID_FIRSTNAME'),
xtype : 'textfield', xtype : 'textfield',
width : 260, width : 260,
allowBlank : false allowBlank : false
@@ -420,7 +420,7 @@ Ext.onReady(function () {
}, },
{ {
id : 'USR_USERNAME', id : 'USR_USERNAME',
fieldLabel : _('ID_USER_ID'), fieldLabel : '<span style=\"color:red;\" ext:qtip="'+ _('ID_FIELD_REQUIRED', _('ID_USER_ID')) +'"> * </span>' + _('ID_USER_ID'),
xtype : 'textfield', xtype : 'textfield',
width : 260, width : 260,
allowBlank : false, allowBlank : false,
@@ -459,7 +459,7 @@ Ext.onReady(function () {
}, },
{ {
id : 'USR_EMAIL', id : 'USR_EMAIL',
fieldLabel : _('ID_EMAIL'), fieldLabel : '<span style=\"color:red;\" ext:qtip="'+ _('ID_FIELD_REQUIRED', _('ID_EMAIL')) +'"> * </span>' + _('ID_EMAIL'),
vtype : 'email', vtype : 'email',
xtype : 'textfield', xtype : 'textfield',
width : 260, width : 260,