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

Arrange the fields in two colums fashion
Hi All,
I want to arrange the fields in two column fashion in top down sequence in custom object with out using vf page.
I had used sections in pagelayouts,but i didn't get it.
Can anyone help me.
Kindly support and suggest
I want to arrange the fields in two column fashion in top down sequence in custom object with out using vf page.
I had used sections in pagelayouts,but i didn't get it.
Can anyone help me.
Kindly support and suggest
https://help.salesforce.com/HTViewHelpDoc?id=customize_layoutcustomize.htm&language=en_US
If your requirement is different, please provide a screen shot to better understand your requirment.
I beleieve, your requirement cannot be achieved using the Statndard Functionality. The othe rworkaround would be add the VF page in the Page Layout.Below is the sample code for that, which you you try.
<table>
<tr>
<apex:repeat value="{!myContacts}" var="c" />
<td>
<apex:outputText value="{!c.FirstName}"/><br />
<apex:outputText value="{!c.LastName}"/><br />
<apex:outputText value="{!c.Email}"/><br />
</td>
</apex:repeat>
</tr>
</table>
I hope, it helped you.
Regards
Pramod