You need to sign in to do that
Don't have an account?

Unknown component apex:pageblocktable
I Start to create my first VF page and when I copy and paste the tutorial code into my page I get that error message :
Unknown component apex:pageblocktable
<apex:page standardController="Account">
<apex:pageBlock title="Hello {!$User.FirstName}!">
You are viewing the {!account.name} account.
</apex:pageBlock>
<apex:pageBlock title="Contacts">
<apex:pageBlockTable value="{!account.Contacts}" var="contact">
<apex:column value="{!contact.Name}"/>
<apex:column value="{!contact.MailingCity}"/>
<apex:column value="{!contact.Phone}"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
Any idea ?
This is same issue as in "$CurrentPage Global Variable?" post - it appears that some servers are still using the Spring '08 VF developer release.
I have resolved by using apex:pageBlockList