I have a BO with a rule for creating a first name/last name the attributes are as follows:
FirstName - Plain Text 100
LastName - Plain Text 150
Name - Plain Text 250 (Calculated Attribute)
The rule used to populate the 'Name' attribute is as follows:
If IssuerUsers.FirstName WAS CHANGED OR IssuerUsers.LastName WAS CHANGED OR IssuerUsers IS NEW OR IssuerUsers.LastName IS DEFINED Then
IssuerUsers.Name=IssuerUsers.LastName+', '+IssuerUsers.FirstName
The rule works fine and the text is updated when changes are made.
My problem is that the presentation of the 'Name' attribute is the following:
FirstName = 'Nigel'
LastName = 'Tufnel'
Name = 'Tufnel, Nige'
This happens once the record is saved and viewed. If the text is being updated the full first name is visible as Nigel. I checked the database and 'Tufnel, Nigel' is stored with the record. I thought that this maybe a Firefox issue so I tried this with IE and it is fine so it seems to be browser specific.
This will only occur if you use a letter that is small (like i or l) larger letters will display.