You need to sign in to do that
Don't have an account?
uptime_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
Assuming you are using PageBlockSection just use an empty PageBlockSectionItem to skip over a cell.
All Answers
Assuming you are using PageBlockSection just use an empty PageBlockSectionItem to skip over a cell.
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>
if you already have visualforce code you can also use this:
<apex:pageBlockSection> <apex:pageBlockSectionItem> </apex:pageBlockSectionItem> <apex:pageBlockSectionItem/> </apex:pageBlockSection>