VisualForce DateFormat - how to display the Day

4.8k Views Asked by At

I am trying to format a date in VisualForce so that it looks like this:

Tuesday 02/22/11

I found this reference on stackoverflow:

How to format a date in VisualForce?

But I cannot determine what to put in the format string.

I tried using an e as referenced here:

http://download.oracle.com/javase/1.4.2/docs/api/java/text/SimpleDateFormat.html

But when I do that:

<apex:outputText value="{0,date,MM'/'e'/'yy}">
        <apex:param value="{!od.PriceBookEntry.Product2.Start__c}" /> 
</apex:outputText>

I get a save error of:

Save error: The Date format pattern for is invalid


<apex:outputText value="{0,date,EEE MM'/'yy}">
    <apex:param value="{!od.PriceBookEntry.Product2.Start__c}" /> 
</apex:outputText>
1

There are 1 best solutions below

1
On
<apex:outputText value="{0,date,EEEE MM'/'dd'/'yyyy}">
    <apex:param value="{!od.PriceBookEntry.Product2.Start__c}" /> 
</apex:outputText>

Outputs:

Monday 10/02/1944