Created
July 30, 2015 06:57
-
-
Save tarot/72997cdb829233bec302 to your computer and use it in GitHub Desktop.
何でこれがエラーになるの? "<apex:outputText> の値属性の形式が無効です。正数であり、データ型が数値、日付、時刻、または選択である必要があります。" ???
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"> | |
| <apex:outputField value="{!Account.CreatedDate}"/> | |
| <apex:outputText value="{0,date}"> | |
| <apex:param value="{!Account.CreatedDate}"/> | |
| </apex:outputText> | |
| </apex:page> |
Author
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
<apex:outputField value="{!Account.CreatedDate}"/>がなければエラーにならない<apex:outputText value="{0}">でもエラーにならない???