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

Visual Force with Custom Object not apearing?
<apex:page standardController="WO_Comments__c"> <apex:pageBlock title="Description" > <apex:pageblockTable value="{!WO_Comments__c}" var="WO_Comments__c"> <apex:outputText value="{!WO_Comments__c.Comment__c}" /> </apex:pageblockTable> </apex:pageBlock> </apex:page>
I am having somewhat of the same issue. I do not get an error however, the custom object will not appear after I enter the code in.
If you see the attached picture where I do apex:pageblock description it shows but, when for the custom object whether I do ouput text or pageblock table I cannot get the custom object to appear
Below is what it should look like. This is the custom object I am trying to referencing but on a different page layout as an item of the related list.
Any suggestions? Am I entereing the code incorrectly?
Just not the way I wanted using:
I was able to at least get it to appear using the list view but I am going to be inserting this into a page layout and I cant have it showing the view, create new view, or the a b c d etc.
<apex:pageBlock title="Descriptions">
<apex:pageBlockTable value="{!books}" var="a">
<apex:column value="{!a.name}"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>
This is what I treid in response to the comment above.
Try to run this page first in new tab, check whether still blank page is there or not?