hi
i want to change WebAsyncRefreshPanel loading icon to my own custom icon.
is there any method/property or technique to do this?
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");
}
I would really like to use this in our application, does anyone know how one would get the WARP to actually call the JavaScript function?