Created
July 30, 2015 08:04
-
-
Save tarot/203cb0c9be97482d05f3 to your computer and use it in GitHub Desktop.
ページ内の最初の利用がinputField/outputFieldだった変数は、そのページ内ではObject型として扱われる模様。なんでもいいから先にinputField/outputField以外で出力すれば通った
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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