Skip to content

Instantly share code, notes, and snippets.

@tarot
Created July 30, 2015 08:04
Show Gist options
  • Select an option

  • Save tarot/203cb0c9be97482d05f3 to your computer and use it in GitHub Desktop.

Select an option

Save tarot/203cb0c9be97482d05f3 to your computer and use it in GitHub Desktop.
ページ内の最初の利用がinputField/outputFieldだった変数は、そのページ内ではObject型として扱われる模様。なんでもいいから先にinputField/outputField以外で出力すれば通った
<apex:page standardController="Account">
<div style="display: none;">{!Account.CreatedDate}</div>
<apex:outputField value="{!Account.CreatedDate}"/>
<apex:outputText value="{0,date}">
<apex:param value="{!Account.CreatedDate}"/>
</apex:outputText>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment