You need to sign in to do that
Don't have an account?

Date formatting in Visual Force
I have a VF page that I am rendering as a PDF doc. This is our actual contract and so the contact start and end dates are displayed on the document. The problem that I just came across is that these start dates and end dates are rendering on the pdf in the locale of the end user who generates the doc. This has become confusing for our centrally located Order Processing group here in the States b/c they are reading the UK date format dd-mm-yyyy in the US format. How can I get the dates to always display in the English(US) locale. Currently I simply diosplaying it using the apex:outputfield tag:
Code:
<td><apex:outputField value="{!SFDC_520_Quote__c.Subscription_Start_Date__c}"/></td>
thanks!
you would then display this using outputText instead of outputfield.