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

how to show loading image?
Hi,
I am newbie on sfdc: I'm trying to show an icon image when my Vf page is loading: I think I can do it using an action status, but I just founded examples with apex button,how can apply this example to my case? can anyone help me?
thanks : )
I am newbie on sfdc: I'm trying to show an icon image when my Vf page is loading: I think I can do it using an action status, but I just founded examples with apex button,how can apply this example to my case? can anyone help me?
thanks : )
All Answers
Check the below link.
http://www.infallibletechie.com/2013/03/how-to-create-splash-page-in-salesforce.html
<apex:commandButton value="Do" reRender="block" status="actStatusId"/>
<apex:actionStatus id="actStatusId" >
<apex:facet name="start" > <img src="/img/loading.gif" />Loading...
</apex:facet>
</apex:actionStatus>