You need to sign in to do that
Don't have an account?
Sree Salesforce
in my issue is i am not getiing data as a table just displays the fields .any one find the problem
<apex:page standardController="contact" sidebar="false">
<apex:form >
<apex:pageBlock title="hello {!$User.FirstName}!">
<apex:pageblockTable value="{!contact}" var="v" columnswidth="25,25,25,25">
<apex:column value="{!v.name}"/>
<apex:column value="{!v.lastname}"/>
<apex:column value="{!v.phone}"/>
<apex:column value="{!v.email}"/>
</apex:pageblockTable>
</apex:pageBlock>
</apex:form>
</apex:page>
<apex:form >
<apex:pageBlock title="hello {!$User.FirstName}!">
<apex:pageblockTable value="{!contact}" var="v" columnswidth="25,25,25,25">
<apex:column value="{!v.name}"/>
<apex:column value="{!v.lastname}"/>
<apex:column value="{!v.phone}"/>
<apex:column value="{!v.email}"/>
</apex:pageblockTable>
</apex:pageBlock>
</apex:form>
</apex:page>
All Answers
which displays the table styling as expected. The only way I'd expect the styling to be missing is if you have turned off the header and standard style sheets.