Save error: The value attribute on <apex:outputText> is not in a valid format. It must be a positive number, and of type Number, Date, Time, or Choice.
The easiest way to fix this is to make use of the built in VisualForce functions DATEVALUE() and DATETIMEVALUE() as necessary and you should be sorted.
<apex:outputText value="{0,date,dd/MM/yyyy}">
<apex:param value="{!DATEVALUE(m_dtimSomeVar)}"/>
</apex:outputText>
nice one... Date format always pock me... thank you
ReplyDelete