In Salesforce, if I'm binding a date into a VisualForce page, how do I apply custom formatting to it?
Example:
<apex:page standardController="Contact">
<apex:pageBlock title="Test">
<p>{!contact.Birthdate}</p>
&…
I have a custom field called Current_Address__c which is of datatype textarea.
I need to populate this field in the format below. ie a newline char after street and another newline after zip.
street
City state Zip
Country
…