function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
mba75mba75 

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 ?

ChrisAtkinsChrisAtkins

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

 



mba75 wrote:
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 ?




ChrisGountanisChrisGountanis
I guess this will be resolved when we all get the Summer 08 release. There are many posts about this topic in the past week. Try using search next time.