Posts

Showing posts from January 16, 2014

Use Of Standard Set Of Controller

Image
The Code used is as follows : VF Page :  <apex:page controller="opportunityList2Con">      <apex:form >         <apex:pageBlock >             <apex:pageBlockTable value="{!opportunities}" var="o">                 <apex:column value="{!o.name}"/>                 <apex:column value="{!o.closedate}"/>             </apex:pageBlockTable>                          <apex:commandButton rendered="{!setCon.hasPrevious}" value="first" action="{!setCon.first}"/>             <apex:commandButton rendered="{!setCon.hasPrevious}" value="Previous" action="{!setCon.previous}"/>             <apex:outputText rendered="{!(setCon.pageNumber * setCon.pageSize) < setCon.ResultSize}" value="{!setCon.pageNumber * setCon.pageSize} Of {!setCon.ResultSize}"></apex:outputText>             <apex:outputText ren