Skip to content

Instantly share code, notes, and snippets.

@tarot
Created July 30, 2015 06:57
Show Gist options
  • Select an option

  • Save tarot/72997cdb829233bec302 to your computer and use it in GitHub Desktop.

Select an option

Save tarot/72997cdb829233bec302 to your computer and use it in GitHub Desktop.
何でこれがエラーになるの? "<apex:outputText> の値属性の形式が無効です。正数であり、データ型が数値、日付、時刻、または選択である必要があります。" ???
<apex:page standardController="Account">
<apex:outputField value="{!Account.CreatedDate}"/>
<apex:outputText value="{0,date}">
<apex:param value="{!Account.CreatedDate}"/>
</apex:outputText>
</apex:page>
@tarot
Copy link
Author

tarot commented Jul 30, 2015

  • <apex:outputField value="{!Account.CreatedDate}"/> がなければエラーにならない
  • <apex:outputText value="{0}"> でもエラーにならない

???

@tarot
Copy link
Author

tarot commented Jul 30, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment