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
KeerthigeeKeerthigee 

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
Ramu_SFDCRamu_SFDC
By default the standard page layouts are used to arrange the fields in two column/one column. You can follow the below link to know more about this.
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.
Pramod_SFDCPramod_SFDC
Hi,

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