ActionStatus in salesforce
---- 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 va...