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
uptime_andrewuptime_andrew 

Adding "Blank Space" to Form Page

Hello,


I am modifying a page overrrideing our Edit page.  I have a 2-column section that I would like 4 items on the left, and 6 on the right.

 

Is there a way to insert a Blank Space/Cell using Visualforce, similar to what the Page Editor allows?

 

Thank you,

 

AT

Best Answer chosen by Admin (Salesforce Developers) 
asadim2asadim2

Assuming you are using PageBlockSection just use an empty PageBlockSectionItem to skip over a cell.

All Answers

asadim2asadim2

Assuming you are using PageBlockSection just use an empty PageBlockSectionItem to skip over a cell.

This was selected as the best answer
bmabma

If you are overriding the edit page with pageBlockTable and pageBlockSelection. You can create an empty pageBlockSelectionItem to minic the look.

 

 

<apex:page> <apex:pageBlock> <apex:pageBlockSection> <apex:pageBlockSectionItem> Left - Side </apex:pageBlockSectionItem> <!-- empty selectItem--> <apex:pageBlockSectionItem/> </apex:pageBlockSection> </apex:pageBlock> </apex:page>

 

 

uptime_andrewuptime_andrew
Thanks guys!
nickfs92840nickfs92840

if you already have visualforce code you can also use this:

 

 

<apex:pageBlockSection> <apex:pageBlockSectionItem> </apex:pageBlockSectionItem> <apex:pageBlockSectionItem/> </apex:pageBlockSection>