Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
WebAsyncRefreshPanel loading icon to my own custom icon.
posted

hi 

i want to change WebAsyncRefreshPanel loading icon to my own custom icon.

is there any method/property or technique to do this?

Parents
  • 28407
    posted

    HI,

     You can change this on the Client-Side.

     Here is a code snippet:

     

     function WebAsyncRefreshPanel1_InitializePanel(oPanel)

    {

    var progress = oPanel.getProgressIndicator();

    progress.setImageUrl("tips.gif");

    }

Reply Children