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

How to give division after particular field under repeat tags?
<apex:page standardcontroller="Program_Member_MVN__c" extensions="CaseCounter" showHeader="false" > <apex:form > <apex:pageBlock title="Attachments" > <apex:pageblockSection > <!-- <apex:outputPanel layout="block" style="overflow:auto;width:200px;height:500px" >--> <apex:repeat value="{!results}" var="M" > <apex:repeat value="{!M.Attachments}" var="temp"> <apex:outputText label="Case Number" > <apex:outputLink value="{!URLFOR($Action.Case.View,M.Id)}" target="_blank"> {!M.CaseNumber} </apex:outputLink> </apex:outputText> <apex:outputText label="Attachment" > <apex:outputLink value="{!URLFOR($Action.Attachment.Download,temp.Id)}" target="_blank">{!temp.Name}</apex:outputLink> </apex:outputText> <apex:outputField value="{!temp.LastModifiedDate}"/> <apex:outputField value="{!temp.CreatedById}"/> </apex:repeat> </apex:repeat> <!-- </apex:OutputPanel>--> </apex:pageblockSection> </apex:pageBlock> </apex:form> </apex:page>
My visual force page is looks like above.I want to give some space after the four fields are displayed for a particular record.How can i do that with apex:repeat tag?
Use below code hope this will solve your issue.
--
SamadhanForce
All Answers
Try in this way
You have to use HtMl form in vf page,design form according to your style.
I Hope this is Helpful
Use below code hope this will solve your issue.
--
SamadhanForce