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

visualforce Table on one Record
I am in the scoping stage of a new visualforce page where I am wanting to create a table with 4 rows and 4 columns where each cell is an individual field on the same record. I think I will need to use html to create the table on the visualforce page, which I have not done before. Can anyone point me to an example or explain the concept of how to make the page?
Thank you
This might help you
why dont you do it like this...or did i miss something
<apex:page standardController="Account">
<apex:form >
<apex:pageBlock >
<apex:pageBlockSection columns="4">
<apex:inputField value="{!account.name}"/>
<apex:inputField value="{!account.ownerId}"/>
<apex:inputField value="{!account.accountsource}"/>
<apex:inputField value="{!account.description}"/>
<apex:inputField value="{!account.sic}"/>
<apex:inputField value="{!account.tickersymbol}"/>
<apex:inputField value="{!account.website}"/>
<apex:inputField value="{!account.phone}"/>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>