Posts

Showing posts with the label action status in visualforce

ActionStatus in salesforce

Image
---- visual force---- <apex:page controller="actionstatuscontroller">     <apex:form >         <apex:pageBlock id="pbid" >             <apex:pageBlockTable value="{!insertval}" var="ins" rendered="{!dsf}">                 <apex:column value="{!ins.id}"/>                 <apex:column value="{!ins.name}"/>             </apex:pageBlockTable>             <apex:actionStatus id="actionstatusid">                 <apex:facet name="start">                 <apex:image url="{!$Resource.loading}" /></apex:facet>             </apex:actionStatus>             <apex:commandButton value="Display Records" action="{!display}" status="actionstatusid" reRender="pbid"/>         </apex:pageBlock>     </apex:form> </apex:page> ----- Controllers ---- public c