CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Language: JavaScript

UpdatePanel BusyIndicator

294 Views
Copy Code Show/Hide Line Numbers
//UpdatePanel BusyIndicator
    // gif:     http://www.ajaxload.info
    // html:      <span id="busyIndicator" class="floatRight"></span>
    // #busyIndicator        {width:16px; height:16px;}
    // .busy            {background:transparent url(../Images/ajax-loader.gif) no-repeat scroll left top;}
    
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_initializeRequest(InitializeRequest);
prm.add_endRequest(EndRequest);
 
function InitializeRequest(sender, args) {
    $("#busyIndicator").addClass("busy");
}
 
function EndRequest(sender, args) {
    $("#busyIndicator").removeClass("busy");
}
by Arjan
  April 03, 2010 @ 4:21am
Tags:

Add a comment


Report Abuse
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate